@@ -4,7 +4,7 @@ export interface IAuditDetail {
parentID: string;
folder: boolean;
children?: IAuditDetail[];
- criterion?: string;
+ criterion?: string; // 考核标准
scoringBase?: number;
}
@@ -15,11 +15,14 @@ export interface IAuditScore {
approvalID: string;
matterID: string;
tree: IAuditDetail[];
+ remark: string; // 备注
+ // 执行人
personApproving?: {
name: string;
executorID: string;
enable: boolean;
}[];
+ // 评分基数
scoringBaseSetting?: {
excellent: number;
good: number;