소스 검색

feat(types): 费用项增加备注

vian 3 년 전
부모
커밋
b6d84537eb
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      types/src/interface/process.ts

+ 4 - 0
types/src/interface/process.ts

@@ -598,6 +598,8 @@ export interface ISettlementItem {
   feeID?: string;
   // 费用类型
   type?: AuditMoneyType;
+  // 备注
+  remark?: string;
 }
 
 // 传统结算已上报审核数据
@@ -635,4 +637,6 @@ export interface ISettlementAuditItem {
   feeID?: string;
   // 费用类型
   type?: AuditMoneyType;
+  // 备注
+  remark?: string;
 }