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.
83 lines
2.6 KiB
C#
83 lines
2.6 KiB
C#
using DS.Module.Core.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 大简云扣费记录表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("djy_charge_fee", "大简云扣费记录表")]
|
|
public class DJYChargeFee : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 单据ID
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "单据ID", IsNullable = true)]
|
|
public long BillId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "提单号", Length = 50, IsNullable = true)]
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "费用类型", Length = 20, IsNullable = true)]
|
|
public string FeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "金额", Length = 18, DecimalDigits = 2, IsNullable = true)]
|
|
public Nullable<decimal> Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单价
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "单价", Length = 18, DecimalDigits = 2, IsNullable = true)]
|
|
public Nullable<decimal> Price { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "业务类型", Length = 50, IsNullable = true)]
|
|
public string BSType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "发送类型", Length = 50, IsNullable = true)]
|
|
public string SendType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "批次号", Length = 64, IsNullable = true)]
|
|
public string BatchNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// MD5
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "MD5", Length = 64, IsNullable = true)]
|
|
public string MD5 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态", Length = 20, IsNullable = true)]
|
|
public string Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回执消息
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "回执消息", Length = 200, IsNullable = true)]
|
|
public string ResultNote { get; set; }
|
|
}
|
|
}
|