using System; using System.Collections.Generic; using System.Linq; using System.Text; using Admin.Core.Model.ViewModels; using SqlSugar; namespace Admin.Core.Model { /// ///反应釜 /// [SugarTable("Hw_Warehouse", "cwss_xl")] public class Hw_Warehouse { /// /// 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 string CreateTime { get; set; } /// /// Desc:更新时间 /// Default: /// Nullable:True /// public string UpdateTime { get; set; } } }