using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.pt
{
[Tenant("pt")]
[SugarTable("sys_config")]
public class SysConfig : BaseModel
{
///
/// code
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = false)]
public string code { get; set; }
///
/// name
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = false)]
public string name { get; set; }
///
/// scontent
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = false)]
public string scontent { get; set; }
///
/// stype
///
[SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = false)]
public string stype { get; set; }
///
/// default1
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default1 { get; set; }
///
/// default2
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default2 { get; set; }
///
/// default3
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default3 { get; set; }
///
/// default4
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default4 { get; set; }
///
/// default5
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default5 { get; set; }
///
/// default6
///
[SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
public string default6 { get; set; }
}
}