using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.SysVm { public class PrintTemplateVm : IndexPage { /// /// 主键ID /// public int Id { get; set; } /// /// 模板名称 /// public string Name { get; set; } /// /// 类型 /// 目前只有入库明细打标签 /// public string Type { get; set; } /// /// 默认打印模板1 不启用0 /// 默认值: ((0)) /// public string Status { get; set; } /// /// 定位json /// public string PositionJson { get; set; } public string IsDel { get; set; } public DateTime CreateTime { get; set; } public int CreateUser { get; set; } public DateTime? UpdateTime { get; set; } public int? UpdateUser { get; set; } } }