1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using SqlSugar;
- using WMS.BZModels;
- namespace wms.sqlsugar.model.cp
- {
- [Tenant("cp")]
- [SugarTable("sys_config")]
- public class SysConfig : BaseModel
- {
- [SugarColumn(ColumnName = "code", Length = 100)]
- public string Code { get; set; }
- [SugarColumn(ColumnName = "name", Length = 100)]
- public string Name { get; set; }
- [SugarColumn(ColumnName = "scontent", Length = 100)]
- public string SContent { get; set; }
- [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; }
- /// <summary>
- /// cache1state
- /// </summary>
- [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
- public string cache1state { get; set; }
- /// <summary>
- /// cache1weight
- /// </summary>
- [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
- public string cache1weight { get; set; }
- /// <summary>
- /// robot
- /// </summary>
- [SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
- public string robot { get; set; }
- /// <summary>
- /// taskflag
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = true)]
- public int? taskflag { get; set; }
- /// <summary>
- /// cache2state
- /// </summary>
- [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
- public string cache2state { get; set; }
- /// <summary>
- /// cache2task
- /// </summary>
- [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
- public string cache2task { get; set; }
- }
- }
|