You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.7 KiB
C#
125 lines
3.7 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务账单费用明细
|
|
///</summary>
|
|
[SugarTable("task_bill_fee_detail", "任务账单费用明细")]
|
|
public class TaskBillFeeDetail : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 顺序号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "顺序号", IsNullable = true)]
|
|
public int? SORT_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用代码", IsNullable = true, Length = 64)]
|
|
public string? FEE_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用名称", IsNullable = true, Length = 100)]
|
|
public string? FEE_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用金额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用金额", IsNullable = true, Length = 12)]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 币制
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "币制", IsNullable = true, Length = 100)]
|
|
public string? CURRENCY { get; set; }
|
|
|
|
/// <summary>
|
|
/// S20
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "S20", IsNullable = true)]
|
|
public int? S20 { get; set; }
|
|
|
|
/// <summary>
|
|
/// S40
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "S40", IsNullable = true)]
|
|
public int? S40 { get; set; }
|
|
|
|
/// <summary>
|
|
/// S45
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "S45", IsNullable = true)]
|
|
public int? S45 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 500)]
|
|
public string? CTNALL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "数量", IsNullable = true)]
|
|
public int? QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "单位", IsNullable = true, Length = 255)]
|
|
public string? UNIT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 税率类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "税率类型", IsNullable = true, Length = 255)]
|
|
public string? TAX_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 税率
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "税率", IsNullable = true, Length = 10)]
|
|
public decimal? RATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合计金额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "合计金额", IsNullable = true, Length = 10)]
|
|
public decimal? TOTAL_AMOUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否东胜接收 1-是 0-否
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否东胜接收 1-是 0-否", IsNullable = true)]
|
|
public int? IS_DONGSHENG { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 255)]
|
|
public string? MBL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否合计项
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否合计项", IsNullable = true)]
|
|
public int? IS_TOTAL { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |