using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.sx
{
[Tenant("sx")]
[SugarTable("WCS_PlcData")]
public class WCSPlcdata : BaseModel
{
///
/// ID
///
[SugarColumn(IsPrimaryKey = true , IsIdentity = true , ColumnDataType ="int" , IsNullable = false , ColumnDescription ="ID")]
public int ID { get; set; }
///
/// 仓库
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="仓库")]
public string WAREHOUSE { get; set; }
///
/// 内容
///
[SugarColumn(ColumnDataType ="text" , IsNullable = false , ColumnDescription ="内容")]
public string CONTENT { get; set; }
}
}