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