|
|
|
@ -1,11 +1,4 @@
|
|
|
|
|
using Myshipping.Core;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application.Service.Fee.Dto
|
|
|
|
|
{
|
|
|
|
@ -14,7 +7,7 @@ namespace Myshipping.Application.Service.Fee.Dto
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用代码,录入费用是作为检索
|
|
|
|
@ -105,13 +98,12 @@ namespace Myshipping.Application.Service.Fee.Dto
|
|
|
|
|
/// 默认是否开票
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsInvoice { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FeeCodePageInput: PageInputBase
|
|
|
|
|
public class FeeCodePageInput : PageInputBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用代码,录入费用是作为检索
|
|
|
|
@ -128,7 +120,7 @@ namespace Myshipping.Application.Service.Fee.Dto
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 台账列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FeeCodePageOutput: FeeCodeDto
|
|
|
|
|
public class FeeCodePageOutput : FeeCodeDto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -136,8 +128,13 @@ namespace Myshipping.Application.Service.Fee.Dto
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 保存
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FeeCodeSaveDto: FeeCodeDto
|
|
|
|
|
public class FeeCodeSaveDto : FeeCodeDto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class FeeCodeCacheDto : FeeCodeDto
|
|
|
|
|
{
|
|
|
|
|
public long TenantId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|