using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 打印编码 /// [SugarTable("YB_PrintCode", TableDescription = "打印编码", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_PrintCode { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }