using System; using System.Linq; using System.Text; using SqlSugar; namespace Admin.Core.Model { /// /// /// [SugarTable( "Hw_Cylinder", "cwss_xl")] public class Hw_Cylinder { public Hw_Cylinder() { } /// /// Desc:条码 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int ID { get; set; } /// /// Desc:名称 /// Default: /// Nullable:True /// public string Name { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string BarCode { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateTime { get; set; } } }