using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.Domain { /// /// 发货主表 /// [Comment("发货主表")] public class ASNBOLShipperMaster { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 租户ID /// [Comment("租户ID")] public long? tenant_id { get; set; } /// /// Id /// [Comment("Id")] public string Id { get; set; } /// /// OrdNbr /// [Comment("OrdNbr")] public string OrdNbr { get; set; } /// /// SoldTo /// [Comment("SoldTo")] public string SoldTo { get; set; } /// /// ShType /// [Comment("ShType")] public string ShType { get; set; } /// /// Terms /// [Comment("Terms")] public string Terms { get; set; } /// /// 是否有效:1-有效;0-无效 /// [Comment("是否有效")] public bool IsActive { get; set; } /// /// 创建时间 /// [Comment("创建时间")] public DateTime? CreateTime { get; set; } /// /// 创建人 /// [Comment("创建人")] public string CreateUser { get; set; } /// /// 创建时间 /// [Comment("修改时间")] public DateTime? UpdateTime { get; set; } /// /// 修改人 /// [Comment("修改人")] public string UpdateUser { get; set; } } }