12345678910111213141516171819202122232425 |
- // 周日报提交、暂存
- export interface IReport {
- deptId?: string; // 部门id
- fillingDate?: string; // 填写日期
- isTemp?: string; // 是否暂存
- receiveUserIds?: string; // 接收人用户ID
- reportContent?: string; // 内容
- reportDay?: string; // 报告天
- reportEndDate?: string; // 日报周报结束日期
- reportId?: string; // 报告ID
- reportMonth?: string; // 报告月份
- reportStartDate?: string; // 日报周报开始日期
- reportType?: string; // daily:日报;weekly:周报
- reportWeek?: string; // 报告周
- reportYear?: string; // 报告年份
- userId?: string; // 用户ID
- weeklyWorkloadList?: any[]; // 工作量
- }
- // 周日报列表
- export interface IReportList {
- reportMonth: string; // 报告月份
- reportType: string; // daily:日报;weekly:周报
- reportYear: string; // 报告年份
- userId: string; // 用户ID
- }
|