using SqlSugar; namespace HH.WCS.Mobox3.RiDong.models; [SugarTable("TN_Sorting_Compose")] public class SortingCompose : BaseModel { public string S_SORTING_NO { get; set; } public string S_ITEM_CODE { get; set; } public string S_ITEM_NAME { get; set; } /// /// 0 δ֪/1-����/2-�ϸ�/3-���ϸ� /// public string S_ITEM_STATE { get; set; } = "�ϸ�"; public string S_BATCH_NO { get; set; } public string S_ITEM_SPEC { get; set; } public string S_SERIAL_NO { get; set; } = ""; public float F_QTY { get; set; } public string S_UOM { get; set; } = "kg"; public string S_NOTE { get; set; } public string S_STATE_PRE { get; set; } public int N_REVIEW_RESULT { get; set; } /// /// 0 δ֪/1-����/2-�ϸ�/3-���ϸ� /// public int N_ITEM_STATE { get; set; } = 2; public int N_ROW_NO { get; set; } /// /// �ּ���ϸ�������� /// public float F_ACC_S_QTY { get; set; } public string S_ITEM_ROUTE { get; set; } = ""; }