123456789101112131415161718192021222324252627282930313233 |
- 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
- {
- /// <summary>
- /// ID
- /// </summary>
- [SugarColumn(IsPrimaryKey = true , IsIdentity = true , ColumnDataType ="int" , IsNullable = false , ColumnDescription ="ID")]
- public int ID { get; set; }
- /// <summary>
- /// 仓库
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="仓库")]
- public string WAREHOUSE { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- [SugarColumn(ColumnDataType ="text" , IsNullable = false , ColumnDescription ="内容")]
- public string CONTENT { get; set; }
- }
- }
|