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