12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 考勤审核多表联查类
- /// </summary>
- public class AttendanceAudit
- {
- int id;
- /// <summary>
- /// 补卡审核主键编号
- /// </summary>
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- int userId;
- /// <summary>
- /// 员工主键编号
- /// </summary>
- public int UserId
- {
- get { return userId; }
- set { userId = value; }
- }
- string number;
- /// <summary>
- /// 员工号
- /// </summary>
- public string Number
- {
- get { return number; }
- set { number = value; }
- }
- string cnName;
- /// <summary>
- /// 员工中文名
- /// </summary>
- public string CnName
- {
- get { return cnName; }
- set { cnName = value; }
- }
- string applicationPeriod;
- /// <summary>
- /// 申请时间
- /// </summary>
- public string ApplicationPeriod
- {
- get { return applicationPeriod; }
- set { applicationPeriod = value; }
- }
- string subject;
- /// <summary>
- /// 事由说明
- /// </summary>
- public string Subject
- {
- get { return subject; }
- set { subject = value; }
- }
- string attachment;
- /// <summary>
- /// 附件
- /// </summary>
- public string Attachment
- {
- get { return attachment; }
- set { attachment = value; }
- }
- }
- }
|