using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Entity { /// /// 任务账单费用明细 /// [SugarTable("task_bill_fee_detail")] [Description("任务账单费用明细")] public class TaskBillFeeDetailInfo: TaskManageDbEntity { /// /// 任务主键(父主键) /// public string TASK_PKID { get; set; } /// /// 顺序号 /// public int SORT_NO { get; set; } /// /// 费用代码 /// public string FEE_CODE { get; set; } /// /// 费用名称 /// public string FEE_NAME { get; set; } /// /// 费用金额 /// public decimal AMOUNT { get; set; } /// /// 费用金额(美金) /// public decimal AMOUNT_USD { get; set; } /// /// 币制 /// public string CURRENCY { get; set; } /// /// S20 /// public int S20 { get; set; } /// /// S40 /// public int S40 { get; set; } /// /// S45 /// public int S45 { get; set; } /// /// 箱型 /// public string CTNALL { get; set; } /// /// 数量 /// public int QTY { get; set; } /// /// 单位 /// public string UNIT { get; set; } /// /// 税率类型 /// public string TAX_TYPE { get; set; } /// /// 税率 /// public decimal? RATE { get; set; } /// /// 合计金额 /// public decimal TOTAL_AMOUNT { get; set; } /// /// 是否东胜接收 1-是 0-否 /// public int IS_DONGSHENG { get; set; } /// /// 主单号 /// public string MBL_NO { get; set; } /// /// 是否合计项 /// public int IS_TOTAL { get; set; } } }