WCSPlcdata.cs 908 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("WCS_PlcData")]
  9. public class WCSPlcdata : BaseModel
  10. {
  11. /// <summary>
  12. /// ID
  13. /// </summary>
  14. [SugarColumn(IsPrimaryKey = true , IsIdentity = true , ColumnDataType ="int" , IsNullable = false , ColumnDescription ="ID")]
  15. public int ID { get; set; }
  16. /// <summary>
  17. /// 仓库
  18. /// </summary>
  19. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="仓库")]
  20. public string WAREHOUSE { get; set; }
  21. /// <summary>
  22. /// 内容
  23. /// </summary>
  24. [SugarColumn(ColumnDataType ="text" , IsNullable = false , ColumnDescription ="内容")]
  25. public string CONTENT { get; set; }
  26. }
  27. }