using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 海运出口舱单收发通模板 /// [SqlSugar.SugarTable("op_sea_export_shippingbill_template", "海运出口舱单收发通模板")] public class SeaExportShippingBillTemplate : BaseModel { /// /// 模板名称 /// [SugarColumn(ColumnDescription = "模板名称", IsNullable = true, Length = 50)] public string TemplateName { get; set; } /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", IsNullable = true, Length = 50)] public string Name { get; set; } /// /// 地址 /// [SugarColumn(ColumnDescription = "地址", IsNullable = true, Length = 100)] public string Address { get; set; } /// /// 国家code /// [SugarColumn(ColumnDescription = "国家code", IsNullable = true, Length = 50)] public string Country { get; set; } /// /// 国家 /// [SugarColumn(ColumnDescription = "国家", IsNullable = true, Length = 50)] public string CountryName { get; set; } /// /// 电话 /// [SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 50)] public string Tel { get; set; } /// /// 邮箱 /// [SugarColumn(ColumnDescription = "邮箱", IsNullable = true, Length = 100)] public string Email { get; set; } /// /// 模板内容 /// [SugarColumn(ColumnDescription = "模板内容", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Content { get; set; } /// /// 类型 1 收 2 发 3 通 /// [SugarColumn(ColumnDescription = "类型 1 收 2 发 3 通", IsNullable = false, Length = 30)] public string Type { get; set; } /// /// 状态 0启用 1禁用 /// [SugarColumn(ColumnDescription = "状态", DefaultValue = "0")] public StatusEnum? Status { get; set; } = StatusEnum.Enable; } }