using SqlSugar; namespace WcsMain.DataBase.TableEntity; /// /// 拣选站台信息 /// [SugarTable("tbl_bs_pick_stand")] public class BsPickStand { /// /// 拣选站台名称 /// [SugarColumn(ColumnName = "pick_stand")] public string? PickStand { get; set; } /// /// 拣选站台类型 /// [SugarColumn(ColumnName = "stand_type")] public int? StandType { get; set; } /// /// 站台状态 /// [SugarColumn(ColumnName = "stand_status")] public int? StandStatus { get; set; } }