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

20 lines
751 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_biz_template_bind桌面端只读缓存</summary>
public class PrintBizTemplateBind
{
public string? Id { get; set; }
/// <summary>业务编码(菜单 permission id</summary>
public string? BizCode { get; set; }
public string? BizName { get; set; }
public string? TemplateId { get; set; }
public string? TemplateCode { get; set; }
/// <summary>字段映射 JSON</summary>
public string? FieldMappingJson { 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; }
}