interface.ts 903 B

12345678910111213141516171819202122232425
  1. // 周日报提交、暂存
  2. export interface IReport {
  3. deptId?: string; // 部门id
  4. fillingDate?: string; // 填写日期
  5. isTemp?: string; // 是否暂存
  6. receiveUserIds?: string; // 接收人用户ID
  7. reportContent?: string; // 内容
  8. reportDay?: string; // 报告天
  9. reportEndDate?: string; // 日报周报结束日期
  10. reportId?: string; // 报告ID
  11. reportMonth?: string; // 报告月份
  12. reportStartDate?: string; // 日报周报开始日期
  13. reportType?: string; // daily:日报;weekly:周报
  14. reportWeek?: string; // 报告周
  15. reportYear?: string; // 报告年份
  16. userId?: string; // 用户ID
  17. weeklyWorkloadList?: any[]; // 工作量
  18. }
  19. // 周日报列表
  20. export interface IReportList {
  21. reportMonth: string; // 报告月份
  22. reportType: string; // daily:日报;weekly:周报
  23. reportYear: string; // 报告年份
  24. userId: string; // 用户ID
  25. }