using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.System
{
///
/// 审核模板表
///
[SugarTable(tableName: "Sys_AuditTemplate", tableDescription: "审核模板表")]
public class Sys_AuditTemplate : EntityBase
{
///
/// 模板名称
///
[SugarColumn(ColumnDescription = "模板名称", IsNullable = true, ColumnDataType = "varchar(100)")]
public string TemplateName { get; set; }
///
/// 模板编码
///
[SugarColumn(ColumnDescription = "模板编码", IsNullable = true, ColumnDataType = "varchar(30)")]
public string TemplateCode { get; set; }
///
/// 业务类型(1-物资领用)
///
[SugarColumn(ColumnDescription = "业务类型(1-物资领用)", IsNullable = true, ColumnDataType = "int")]
public int BusinessType { get; set; }
///
/// 状态(0-禁用,1-启用)
///
[SugarColumn(ColumnDescription = "状态(0-禁用,1-启用)", IsNullable = true, ColumnDataType = "int")]
public int Status { get; set; }
}
}