Files
qhmes/yy-admin-master/YY.Admin.Core/Entity/PrintTemplate.cs

21 lines
797 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YY.Admin.Core.Entity;
/// <summary>打印模板(映射后端 print_template 表,桌面端只读)</summary>
public class PrintTemplate
{
public string? Id { get; set; }
public string? TemplateCode { get; set; }
public string? TemplateName { get; set; }
public string? Category { get; set; }
public double? PaperWidthMm { get; set; }
public double? PaperHeightMm { get; set; }
public string? PaperOrientation { get; set; }
/// <summary>原生设计器 JSONengine=native</summary>
public string? TemplateJson { get; set; }
public string? Remark { get; set; }
public string? CreateBy { get; set; }
public DateTime? CreateTime { get; set; }
public string? UpdateBy { get; set; }
public DateTime? UpdateTime { get; set; }
}