using SqlSugar; using System; namespace ZJ_BYD.Model { /// /// 支线信息表 /// [SugarTable("t_branchinfo")] public class T_BranchInfo { [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 工位编码 /// [SugarColumn(ColumnName = "stationcode")] public string StationCode { get; set; } /// /// 机壳SFC掩码 /// [SugarColumn(ColumnName = "productsfccode")] public string ProductSfcCode { get; set; } /// /// 站点 /// [SugarColumn(ColumnName = "site")] public string BranchSite { get; set; } /// /// 资源 /// [SugarColumn(ColumnName = "resource")] public string BranchResource { get; set; } /// /// 工序 /// [SugarColumn(ColumnName = "procedure")] public string BranchProcedure { get; set; } /// /// 参数 /// [SugarColumn(ColumnName = "para")] public string BranchPara { get; set; } /// /// 排序索引 /// [SugarColumn(ColumnName = "sortindex")] public int SortIndex { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "createdtime", IsOnlyIgnoreUpdate = true)] public DateTime? CreatedTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "createdby", IsOnlyIgnoreUpdate = true)] public string CreatedBy { get; set; } /// /// 最后一次修改时间 /// [SugarColumn(ColumnName = "updatedtime", IsOnlyIgnoreInsert = true)] public DateTime? UpdatedTime { get; set; } /// /// 最后一次修改者Id /// [SugarColumn(ColumnName = "updatedby", IsOnlyIgnoreInsert = true)] public string UpdatedBy { get; set; } } }