using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 打印配置 /// [SugarTable("Dt_PrintSetting")] public class Dt_PrintSetting : BaseEntity { /// /// 备 注:区域ID /// 默认值: /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:打印编码 /// 默认值: /// [SugarColumn(ColumnName = "PrintCode")] public string PrintCode { get; set; } /// /// 备 注:打印数量 /// 默认值: /// [SugarColumn(ColumnName = "PrintNo")] public int PrintNo { get; set; } /// /// 备 注:备用 /// 默认值: /// [SugarColumn(ColumnName = "Spare1")] public string? Spare1 { get; set; } /// /// 备 注:备用 /// 默认值: /// [SugarColumn(ColumnName = "Spare2")] public int Spare2 { get; set; } } }