| 12345678910111213141516171819202122232425262728293031323334353637 | using SqlSugar;using System;using System.ComponentModel.DataAnnotations.Schema;namespace WCS.Entity{    /// <summary>    /// 设备信息表    /// </summary>    [SugarTable(nameof(WCS_PlcData), "路径")]    public class WCS_PlcData    { /// <summary>      /// ID      /// </summary>        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")]        [Column(Order = 0)]        public virtual int ID { get; set; }        /// <summary>        /// 更新时间        /// </summary>        [SugarColumn(ColumnDescription = "更新时间")]        public DateTime UPDATETIME { get; set; } = DateTime.Now;        /// <summary>        /// 仓库        /// </summary>        [SugarColumn(ColumnDescription = "仓库")]        public string WAREHOUSE { get; set; }        /// <summary>        /// 内容        /// </summary>        [SugarColumn(ColumnDescription = "内容")]        public string CONTENT { get; set; }    }}
 |