Explorar el Código

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

vian hace 3 años
padre
commit
b6d84537eb
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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;
 }