BusinessStatus长度

dev
zhangxiaofeng 2 months ago
parent 01d177e003
commit 478549a793

@ -16,13 +16,13 @@ public class SeaExport : BaseOrgModel<long>
/// 主单Id
/// </summary>
[Description("主单Id")]
[SqlSugar.SugarColumn(ColumnDescription = "主单Id", IsNullable = false,DefaultValue = "0")]
[SqlSugar.SugarColumn(ColumnDescription = "主单Id", IsNullable = false, DefaultValue = "0")]
public long ParentId { get; set; }
/// <summary>
/// 业务状态
/// </summary>
[Description("业务状态")]
[SqlSugar.SugarColumn(ColumnDescription = "业务状态", IsNullable = true)]
[SqlSugar.SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 50)]
public string BusinessStatus { get; set; }
/// <summary>
/// 业务状态名称
@ -45,7 +45,7 @@ public class SeaExport : BaseOrgModel<long>
/// 财务日期
/// </summary>
[Description("财务日期")]
[SqlSugar.SugarColumn(ColumnDescription = "财务日期", IsNullable = false,Length = 7)]
[SqlSugar.SugarColumn(ColumnDescription = "财务日期", IsNullable = false, Length = 7)]
public string AccountDate { get; set; }
/// <summary>
@ -173,14 +173,14 @@ public class SeaExport : BaseOrgModel<long>
/// 收货人内容
/// </summary>
[Description("收货人内容")]
[SqlSugar.SugarColumn(ColumnDescription = "收货人内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
[SqlSugar.SugarColumn(ColumnDescription = "收货人内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string ConsigneeContent { get; set; }
/// <summary>
/// 通知人内容
/// </summary>
[Description("通知人内容")]
[SqlSugar.SugarColumn(ColumnDescription = "通知人内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
[SqlSugar.SugarColumn(ColumnDescription = "通知人内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string NotifyPartyContent { get; set; }
/// <summary>
@ -194,7 +194,7 @@ public class SeaExport : BaseOrgModel<long>
/// 场站Id t_crm_client CUSTNAME
/// </summary>
[Description("场站Id")]
[SqlSugar.SugarColumn(ColumnDescription = "场站Id", IsNullable = true, DefaultValue ="0")]
[SqlSugar.SugarColumn(ColumnDescription = "场站Id", IsNullable = true, DefaultValue = "0")]
public long YardId { get; set; }
/// <summary>
/// 场站 t_crm_client CUSTNAME
@ -244,7 +244,7 @@ public class SeaExport : BaseOrgModel<long>
/// 第二通知人 t_info_client CUSTNAME
/// </summary>
[Description("第二通知人")]
[SqlSugar.SugarColumn(ColumnDescription = "第二通知人", IsNullable = true,Length = 100)]
[SqlSugar.SugarColumn(ColumnDescription = "第二通知人", IsNullable = true, Length = 100)]
public string SecondNotifyParty { get; set; }
/// <summary>
/// 第二通知人内容
@ -443,7 +443,7 @@ public class SeaExport : BaseOrgModel<long>
/// </summary>
[Description("第三付款地")]
[SugarColumn(ColumnDescription = "第三付款地", IsNullable = true, Length = 50)]
public string ThirdPayAt { get; set; }
public string ThirdPayAt { get; set; }
/// <summary>
/// 运输条款 CY-CY t_code_service
/// </summary>
@ -455,14 +455,14 @@ public class SeaExport : BaseOrgModel<long>
/// 唛头 N/M
/// </summary>
[Description("唛头")]
[SugarColumn(ColumnDescription = "唛头", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
[SugarColumn(ColumnDescription = "唛头", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Marks { get; set; }
/// <summary>
/// 箱号封号
/// </summary>
[Description("箱号封号")]
[SugarColumn(ColumnDescription = "箱号封号", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
[SugarColumn(ColumnDescription = "箱号封号", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string CntrSealNo { get; set; }
/// <summary>
@ -476,13 +476,13 @@ public class SeaExport : BaseOrgModel<long>
/// 货物描述
/// </summary>
[Description("货物描述")]
[SugarColumn(ColumnDescription = "货物描述", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
[SugarColumn(ColumnDescription = "货物描述", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Description { get; set; }
/// <summary>
/// 品名Id
/// </summary>
[Description("品名Id")]
[SugarColumn(ColumnDescription = "品名", IsNullable = true, DefaultValue ="0")]
[SugarColumn(ColumnDescription = "品名", IsNullable = true, DefaultValue = "0")]
public long? GoodsId { get; set; }
/// <summary>
/// 品名 t_code_goods
@ -676,7 +676,7 @@ public class SeaExport : BaseOrgModel<long>
/// 航线
/// </summary>
[Description("航线")]
[SugarColumn(ColumnDescription = "航线", IsNullable = true, Length = 100 )]
[SugarColumn(ColumnDescription = "航线", IsNullable = true, Length = 100)]
public string Lane { get; set; }
/// <summary>
@ -702,7 +702,7 @@ public class SeaExport : BaseOrgModel<long>
/// </summary>
[Description("船公司")]
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 100)]
public string Carrier { get; set; }
public string Carrier { get; set; }
/// <summary>
/// 货代公司Id
/// </summary>
@ -894,7 +894,7 @@ public class SeaExport : BaseOrgModel<long>
/// Desc:备注
/// </summary>
[Description("备注")]
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
[SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Remark { get; set; }
@ -988,7 +988,7 @@ public class SeaExport : BaseOrgModel<long>
/// Desc:仓库Id
/// </summary>
[Description("仓库Id")]
[SugarColumn(ColumnDescription = "仓库Id", IsNullable = true,DefaultValue ="0")]
[SugarColumn(ColumnDescription = "仓库Id", IsNullable = true, DefaultValue = "0")]
public long WareHouseId { get; set; }
/// <summary>
/// Desc:仓库
@ -1274,7 +1274,7 @@ public class SeaExport : BaseOrgModel<long>
/// 船代
/// </summary>
[Description("船代")]
[SqlSugar.SugarColumn(ColumnDescription = "船代", IsNullable = true,Length = 100)]
[SqlSugar.SugarColumn(ColumnDescription = "船代", IsNullable = true, Length = 100)]
public string ShipAgency { get; set; }
/// <summary>
/// 船代Id
@ -1489,20 +1489,20 @@ public class SeaExport : BaseOrgModel<long>
/// </summary>
[Description("提单签发状态")]
[SugarColumn(ColumnDescription = "提单签发状态", IsNullable = true, DefaultValue = "0")]
public int BLIssueStatus { get; set; }
public int BLIssueStatus { get; set; }
/// <summary>
/// Desc:整票提交状态
/// </summary>
[Description("整票提交状态")]
[SugarColumn(ColumnDescription = "整票提交状态", IsNullable = true, DefaultValue = "-1")]
public AuditStatusEnum BillSubmitStatus { get; set; }
public AuditStatusEnum BillSubmitStatus { get; set; }
/// <summary>
/// 是否订阅运踪 0 没有订阅 1 订阅起运港 2 订阅目的港 3 订阅起运港目的港
/// </summary>
[Description("是否订阅运踪")]
[SugarColumn(ColumnDescription = "是否订阅运踪", IsNullable = true, DefaultValue = "0",Length =10)]
[SugarColumn(ColumnDescription = "是否订阅运踪", IsNullable = true, DefaultValue = "0", Length = 10)]
public string IsBookingYZ { get; set; }
@ -1550,7 +1550,7 @@ public class SeaExport : BaseOrgModel<long>
/// 拆票或合票标志 1-拆票 2-合票
/// </summary>
[Description("拆票或合票标志")]
[SqlSugar.SugarColumn(ColumnDescription = "拆票或合票标志 1-拆票 2-合票", IsNullable = true,DefaultValue = "0")]
[SqlSugar.SugarColumn(ColumnDescription = "拆票或合票标志 1-拆票 2-合票", IsNullable = true, DefaultValue = "0")]
public int SplitOrMergeFlag { get; set; }
/// <summary>
@ -1570,7 +1570,7 @@ public class SeaExport : BaseOrgModel<long>
/// 客服名称
/// </summary>
[Description("客服名称")]
[SugarColumn(ColumnDescription = "客服名称", IsNullable = true,Length = 30)]
[SugarColumn(ColumnDescription = "客服名称", IsNullable = true, Length = 30)]
public string CustomerServiceName { get; set; }
/// <summary>
@ -1802,7 +1802,7 @@ public class SeaExport : BaseOrgModel<long>
/// 约主Id
/// </summary>
[Description("约主Id")]
[SugarColumn(ColumnDescription = "约主Id", IsNullable = true, DefaultValue ="0")]
[SugarColumn(ColumnDescription = "约主Id", IsNullable = true, DefaultValue = "0")]
public long ContractClientId { get; set; }
/// <summary>

Loading…
Cancel
Save