| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | using SqlSugar;namespace wms.sqlsugar.model.sx{    /// <summary>    ///  配置信息表    /// </summary>    [Tenant("sx")]    [SugarTable("sys_config", "配置信息表")]    public class sxSysConfig : BaseModel    {        /// <summary>        ///  编号        /// </summary>        [SugarColumn(ColumnName = "code", Length = 100)]        public string Code { get; set; }        /// <summary>        ///  名称        /// </summary>        [SugarColumn(ColumnName = "name", Length = 100)]        public string Name { get; set; }        /// <summary>        ///  内容        /// </summary>        [SugarColumn(ColumnName = "scontent", Length = 100)]        public string SContent { get; set; }        /// <summary>        ///  类型        /// </summary>        [SugarColumn(ColumnName = "stype", Length = 50)]        public string SType { get; set; }        [SugarColumn(ColumnName = "default1", Length = 100, IsNullable = true)]        public string Default1 { get; set; }        [SugarColumn(ColumnName = "default2", Length = 100, IsNullable = true)]        public string Default2 { get; set; }        [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]        public string Default3 { get; set; }        [SugarColumn(ColumnName = "cache1state", Length = 50, IsNullable = true)]        public string Cache1State { get; set; }        [SugarColumn(ColumnName = "cache1weight", Length = 50, IsNullable = true)]        public string Cache1Weight { get; set; }        [SugarColumn(ColumnName = "robot", Length = 100, IsNullable = true)]        public string Robot { get; set; }        [SugarColumn(ColumnName = "taskflag", ColumnDataType = "int", IsNullable = true)]        public int TaskFlag { get; set; }        [SugarColumn(ColumnName = "cache2state", Length = 50, IsNullable = true)]        public string Cache2State { get; set; }        [SugarColumn(ColumnName = "cache2task", Length = 50, IsNullable = true)]        public string Cache2Task { get; set; }    }}
 |