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_remark", "海运出口备注")] public class SeaExportRemark : BaseModel { /// /// 业务Id /// [SugarColumn(ColumnDescription = "业务Id", IsNullable = false)] public long Pid { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)] public string Remark { get; set; } } }