using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_DBCK")] public class MesDbck { /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 单据类型 /// [SugarColumn(ColumnName = "fbilltypeid")] public string? Fbilltypeid { get; set; } /// /// 调拨方向 /// [SugarColumn(ColumnName = "ftransferdirect")] public string? Ftransferdirect { get; set; } /// /// 调拨类型 /// [SugarColumn(ColumnName = "ftransferbiztype")] public string? Ftransferbiztype { get; set; } /// /// 调出库存组织 /// [SugarColumn(ColumnName = "fstockoutorgid")] public string? Fstockoutorgid { get; set; } /// /// 调入库存组织 /// [SugarColumn(ColumnName = "fstockorgid")] public string? Fstockorgid { get; set; } /// /// 调出货主类型 /// [SugarColumn(ColumnName = "fownertypeoutidhead")] public string? Fownertypeoutidhead { get; set; } /// /// 调出货主 /// [SugarColumn(ColumnName = "fowneroutidhead")] public string? Fowneroutidhead { get; set; } /// /// 调入货主类型 /// [SugarColumn(ColumnName = "fownertypeidhead")] public string? Fownertypeidhead { get; set; } /// /// 调入货主 /// [SugarColumn(ColumnName = "fowneridhead")] public string? Fowneridhead { get; set; } /// /// 销售组织 /// [SugarColumn(ColumnName = "fsaleorgid")] public string? Fsaleorgid { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cteate_data")] public DateTime? CteateData { get; set; } /// /// 最后跟新人 /// [SugarColumn(ColumnName = "lastupdate_by")] public string? LastupdateBy { get; set; } /// /// 最后跟新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// 审核人 /// [SugarColumn(ColumnName = "sh_by")] public string? ShBy { get; set; } /// /// 审核时间 /// [SugarColumn(ColumnName = "sh_date")] public DateTime? ShDate { get; set; } /// /// 审核状态 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "sh_state")] public bool? ShState { get; set; } /// /// 调拨类型编码 /// [SugarColumn(ColumnName = "ftransferbiztype_no")] public string? FtransferbiztypeNo { get; set; } /// /// 调拨方向编码 /// [SugarColumn(ColumnName = "ftransferdirect_no")] public string? FtransferdirectNo { get; set; } /// /// 调出仓库 /// [SugarColumn(ColumnName = "inv_fcode")] public string? InvFcode { get; set; } /// /// 调出仓库名称 /// [SugarColumn(ColumnName = "inv_fname")] public string? InvFname { get; set; } /// /// 调入仓库 /// [SugarColumn(ColumnName = "from_fcode")] public string? FromFcode { get; set; } /// /// 调入仓库名称 /// [SugarColumn(ColumnName = "from_fname")] public string? FromFname { get; set; } /// /// 调出库存组织ID /// [SugarColumn(ColumnName = "fstockoutorgid_no")] public int? FstockoutorgidNo { get; set; } /// /// 调入库存组织ID /// [SugarColumn(ColumnName = "fstockorgid_no")] public int? FstockorgidNo { get; set; } /// /// 调拨申请单 /// [SugarColumn(ColumnName = "billno")] public string? Billno { get; set; } /// /// 单据类型编码 /// [SugarColumn(ColumnName = "fbilltypeid_no")] public string? FbilltypeidNo { get; set; } /// /// 出库仓库 /// [SugarColumn(ColumnName = "ck_depot")] public int? CkDepot { get; set; } /// /// 入库仓库 /// [SugarColumn(ColumnName = "rk_depot")] public int? RkDepot { get; set; } /// /// 完结标识 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "is_wc")] public bool? IsWc { get; set; } /// /// [SugarColumn(ColumnName = "remark")] public string? Remark { get; set; } }