using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 日报管理类 /// public class DailyManagement { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } string dailyDate; /// /// 日报日期 /// public string DailyDate { get { return dailyDate; } set { dailyDate = value; } } string workTitle; /// /// 工作标题 /// public string WorkTitle { get { return workTitle; } set { workTitle = value; } } string workHours; /// /// 工时 /// public string WorkHours { get { return workHours; } set { workHours = value; } } string completionRate; /// /// 完成率 /// public string CompletionRate { get { return completionRate; } set { completionRate = value; } } string workContent; /// /// 工作内容 /// public string WorkContent { get { return workContent; } set { workContent = value; } } int userId; /// /// 填写人 /// public int UserId { get { return userId; } set { userId = value; } } string dates; /// /// 填写时间 /// public string Dates { get { return dates; } set { dates = value; } } int isAudit; /// /// 是否审核 /// public int IsAudit { get { return isAudit; } set { isAudit = value; } } int auditUserId; /// /// 审核人 /// public int AuditUserId { get { return auditUserId; } set { auditUserId = value; } } string auditDate; /// /// 审核时间 /// public string AuditDate { get { return auditDate; } set { auditDate = value; } } int isDel; /// /// 是否删除 /// public int IsDel { get { return isDel; } set { isDel = value; } } } }