using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Core { [SugarTable("ALCTPOLICY")] public class ALCTPOLICY { public ALCTPOLICY() { } public string ID { get; set; } public string NAME { get; set; } public int ISEDIT { get; set; } public string ADDUSERNO { get; set; } public DateTime ADDDATETIME { get; set; } public string EDITUSERNO { get; set; } public DateTime EDITDATETIME { get; set; } public string DEFINE01 { get; set; } public string DEFINE02 { get; set; } public string DEFINE03 { get; set; } public string DEFINE04 { get; set; } public string DEFINE05 { get; set; } } }