using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cylsg.Model.ECTEModel
{
///
/// 办公系统科目设置
///
[Tenant("ECTESTOADB")]
[SugarTable("Oa_SubjectSet")]
public class OaSubjectSet
{
///
/// 科目编号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Keyid { get; set; }
///
/// 所属厂商
///
[SugarColumn(ColumnName = "FirmId")]
public Guid? FirmId { get; set; }
///
/// 科目类别 过滤为 贷是支出 的类别
///
[SugarColumn(ColumnName = "SubjectType", Length = 10)]
public string? SubjectType { get; set; }
///
/// 科目名称
///
[SugarColumn(ColumnName = "SubjectName", Length = 50)]
public string SubjectName { get; set; }
///
/// 最后修改时间
///
[SugarColumn(ColumnName = "LastUpdateTime")]
public DateTime? LastUpdateTime { get; set; }
///
/// 操作人
///
[SugarColumn(ColumnName = "Operator", Length = 20)]
public string? Operator { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "Remark", Length = 200)]
public string? Remark { get; set; }
///
/// 状态 1为有效
///
[SugarColumn(ColumnName = "Status")]
public bool? Status { get; set; }
}
}