using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 考勤补卡类 /// public class UpCardAudit { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } int uid; /// /// 员工外键编号 /// public int Uid { get { return uid; } set { uid = value; } } string yearMonth; /// /// 补卡年月 /// public string YearMonth { get { return yearMonth; } set { yearMonth = value; } } string applicationPeriod; /// /// 申请时间 /// public string ApplicationPeriod { get { return applicationPeriod; } set { applicationPeriod = value; } } string attachment; /// /// 附件 /// public string Attachment { get { return attachment; } set { attachment = value; } } string subject; /// /// 事由说明 /// public string Subject { get { return subject; } set { subject = value; } } int isAudit; /// /// 审核状态 /// public int IsAudit { get { return isAudit; } set { isAudit = value; } } string auditRemark; /// /// 审核备注 /// public string AuditRemark { get { return auditRemark; } set { auditRemark = value; } } int operate; /// /// 操作人员 /// public int Operate { get { return operate; } set { operate = value; } } string operateTime; /// /// 操作时间 /// public string OperateTime { get { return operateTime; } set { operateTime = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } } }