process.ts 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. import { ReportTree } from './report';
  2. import { CptModelName, SubModelName, ActionType } from './base';
  3. import { BusinessTypeKey } from './gather';
  4. import { executorMember } from './approvalStatus';
  5. import { IProcessMatter, IStepMatter } from './matter';
  6. // 环节类型
  7. export enum SectorType {
  8. APPROVAL = 'approval', // 审批
  9. CONDITION = 'condition', // 条件
  10. }
  11. export enum ProcessStatus {
  12. WAITING = 'waiting', // 待审批
  13. APPROVED = 'approved', // 审批通过
  14. ACTIVATING = 'activating', // 当前流程
  15. FAILED = 'failed', // 审批退回
  16. }
  17. // 审批方式
  18. export enum ApprovalWay {
  19. REPORT = 'report', // 上报审批
  20. ACCOUNT = 'account', // 指定用户
  21. JOINTLYSIGN = 'jointlySign', // 会签
  22. ORSIGN = 'orSign', // 或签
  23. ORDERAPPROVAL = 'orderApproval', // 依次审批
  24. PREACCOUNT = 'prevAccount', // 上一审批人设置
  25. }
  26. // 角色权限
  27. export enum RolePermission {
  28. MY_REPORT = 'report', // 我的项目-项目上报
  29. MY_FREE_REPORT = 'freeReport', // 我的项目-指定审批人
  30. MY_ADD_PROJECT = 'addProject', // 我的项目-新建项目
  31. MY_EDIT_PROJECT = 'editProject', // 我的项目-编辑项目
  32. MY_EXPORT_PROJECT = 'exportProject', // 我的项目-导出项目
  33. MY_DEL_PROJECT = 'delProject', // 我的项目-删除项目
  34. MY_VIEW_PROJECT = 'viewProject', // 我的项目-查看项目
  35. MY_VIEW_APPROVAL = 'viewApproval', // 我的项目-审批进度
  36. MY_SAVE_INDEX = 'viewZbkProject', // 我的项目-指标入库
  37. JOIN_VIEW_PARTICIPATING_PROJECT = 'viewParticipatingProject', // 我参与的项目-查看项目
  38. JOIN_SAVE_INDEX = 'saveIndex', // 我参与的项目-指标入库
  39. JOIN_EXPORT_PARTICIPATING_PROJECT = 'exportParticipatingProject', // 我参与的项目-导出项目
  40. ALL_SET_PROJECT = 'setProjects', // 全部项目-项目设置
  41. ALL_VIEW_ALL_PROJECTS = 'viewAllProjects', // 全部项目-查看项目
  42. ALL_SAVE_INDEX = 'saveIndexAll', // 全部项目-指标入库
  43. ALL_EXPORT_PROJECTS = 'exportProjects', // 全部项目-导出项目
  44. ZBK_ENABLE = 'zbkEnable', // 指标库启用
  45. ZBK_EDIT = 'zbkEdit', // 指标库-编辑
  46. SAVE_INDEX = 'saveIndex', // 我参与的项目-指标入库
  47. CJK_ENABLE = 'cjkEnable', // 材价库-启用
  48. CJK_EDIT = 'cjkEdit', // 材价库-编辑
  49. BACK_STAGE_ENABLE = 'backstageEnable', // 小后台权限
  50. ENABLE_NOTICE = 'enableNotice', // 管理员发布通知
  51. // TODO 指标库 区间对数
  52. }
  53. // 系统角色
  54. export enum RoleType {
  55. SYSTEM = 'system',
  56. SYSTEM_NORMAL = 'systemNormal',
  57. NORMAL = 'normal',
  58. }
  59. // 角色
  60. export interface IRole {
  61. ID: string;
  62. name: string;
  63. roleType: RoleType;
  64. frontPermission: RolePermission[];
  65. }
  66. // 参与者模式
  67. export enum ParticipantMode {
  68. ACCOUNT = 'account', // 用户模式
  69. ROLE = 'role', // 角色模式(未来)
  70. }
  71. export enum AccountConfigure {
  72. SKIP = 'skip', // 允许跳过
  73. RETURN = 'return', // 允许退回
  74. REVOKE = 'revoke', // 允许撤回
  75. ASSISTAUDIT = 'assistAudit', // 协审
  76. ADDSIGN = 'addSign', // 加签
  77. NEXTSECTOR = 'nextSector', // 是否可添加环节
  78. }
  79. export interface ICoreView {
  80. ID: string; // 用户ID
  81. projectIDs: string[]; // 充许协审的单位工程ID,为空数组时表示可以协审当前环节的所有项目
  82. }
  83. export interface IProcessAccount {
  84. // ID 账号ID name 名称institutionID 企事业ID
  85. ID: string;
  86. name: string; // 曾用名,不会变动
  87. institutionID?: string; // 单位ID(可能不会用到)
  88. institutionName?: string; // 单位名称(不要保存到数据库,而是在使用的时候通过ID去查)
  89. status: ProcessStatus; // 审批状态
  90. alreadyAddProcess?: boolean; // 是否已经添加了新环节(暂时用的,用于标记是否添加了环节,以后可能删除)
  91. configure: AccountConfigure[]; // 权限配置
  92. remark: string; // 审批意见(肯定有,会有默认值)
  93. coreViews: ICoreView[]; // 协审人信息
  94. projectIDs: string[]; // 允许审批的单位工程ID,为空数组时表示可以审批当前环节的所有项目
  95. }
  96. // 参与者信息
  97. export interface IParticipantInfo {
  98. approvalWay: ApprovalWay;
  99. participantMode: ParticipantMode;
  100. accounts: IProcessAccount[];
  101. }
  102. // 后台的
  103. // 流程中的一个环节
  104. export interface IProcess {
  105. ID: string;
  106. name: string;
  107. sectorType: SectorType;
  108. seq?: number;
  109. createdByProcess?: string; // 上环节ID, 表示哪个环节创建的(上环节添加的)
  110. time?: number; // 当前环节完成时间(仅当审批通过或审批退回时会有时间)
  111. participantInfo: IParticipantInfo;
  112. afterAuditMoney?: number; // 审后的金额
  113. }
  114. export interface Members {
  115. ID: string;
  116. approvalStatus: string;
  117. approvalTime: number | string;
  118. approvalComment: string;
  119. name?: string;
  120. institutionID?: string;
  121. institutionName?: string;
  122. }
  123. // 3合1执行者
  124. export interface IProcessExecutor {
  125. ID: string;
  126. permission: string[];
  127. configure: string[];
  128. businessType: BusinessTypeKey;
  129. gatherID: string;
  130. setType: string;
  131. participantMode: string;
  132. name: string;
  133. dataID: string;
  134. reportTime?: string; // 三合一审批流程第一位的上报时间
  135. scope?: string;
  136. members?: Members[];
  137. // 事项中组件及其权限
  138. inProcessMatters?: IProcessMatter[];
  139. // 事项后组件及其权限
  140. afterProcessMatters?: IProcessMatter[];
  141. }
  142. export interface SimpleDynamicStep {
  143. stepID: string;
  144. stepName: string;
  145. executorID?: string;
  146. executorName?: string;
  147. }
  148. // export interface ICollaboratorPermission {
  149. // matterID: string;
  150. // form: string[];
  151. // cost: string[];
  152. // profile: string[];
  153. // }
  154. // 3合1协审人信息
  155. export interface ICollaborator {
  156. ID: string; // 用户ID
  157. executorInfo?: {
  158. executorID: string;
  159. executorName: string;
  160. }; // 执行者
  161. fixCollaborator?: boolean;
  162. institutionID?: string; // 机构ID,只在协审角色为审批单位的时候存在
  163. name?: string; // 用户姓名
  164. deadline: string | number; // 截至时间
  165. // 事项中组件及其权限
  166. inProcessMatters?: IProcessMatter[];
  167. // 事项后组件及其权限
  168. afterProcessMatters?: IProcessMatter[];
  169. }
  170. // 3合1添加协审下拉选项
  171. export interface ICollaboratorItem {
  172. institutionID?: string;
  173. institutionName?: string;
  174. approvalMembers: string[];
  175. approverName?: string;
  176. }
  177. // 三合一协审人范围
  178. export interface ICollaboratorScope {
  179. type: string;
  180. accounts: string[];
  181. institutionRoles: string[];
  182. }
  183. // 组件权限配置(主审、固定协审通用)
  184. export interface IComponentPermissionConfig {
  185. matterID: string;
  186. formPermission?: string[];
  187. costPermission?: string[];
  188. profilePermission?: string[];
  189. auditCommentsPermission?: string[];
  190. settlementPermission?: string[];
  191. budgetComparePermission?: string[];
  192. }
  193. // 固定协审配置
  194. export interface IFixedCollaboratorConfig {
  195. executors: string[]; // 固定协审
  196. permissions: IComponentPermissionConfig[];
  197. }
  198. // 参与者配置项
  199. export interface IParticipantConfig {
  200. type: string;
  201. accounts?: string[];
  202. fixedCollaborators?: IFixedCollaboratorConfig[];
  203. }
  204. // 3合1参与者信息
  205. export interface IProcedureParticipantInfo {
  206. approvalWay: string;
  207. configure?: IParticipantConfig[];
  208. executor: {
  209. ID: string;
  210. members?: Members[];
  211. reportTime?: string;
  212. approvaledPermission?: string[]; // 事项后原始数据
  213. inProcessMatters?: IProcessMatter[];
  214. afterProcessMatters?: IProcessMatter[];
  215. };
  216. collaborators: ICollaborator[];
  217. dynamicSteps: SimpleDynamicStep[];
  218. stepMatters?: IStepMatter[];
  219. }
  220. // 3合1分支判断信息
  221. export interface IConditionItem {
  222. ID: string;
  223. field: string;
  224. type: string;
  225. symbol: string;
  226. value: string;
  227. }
  228. // 3合1分支条件信息
  229. // eslint-disable-next-line prettier/prettier, no-use-before-define
  230. export interface IConditionInfoItem<T = IProcedureProcess> {
  231. ID: string;
  232. conditions: IConditionItem[];
  233. // eslint-disable-next-line prettier/prettier, no-use-before-define
  234. process: T[];
  235. }
  236. // 3合1步骤中的一个环节
  237. export interface IProcedureProcess {
  238. ID: string;
  239. referenceID: string;
  240. name: string;
  241. sectorType: SectorType;
  242. isReportProcess?: boolean; // 是否上报环节(因为上报环节是特殊的,所以加个字段方便处理)
  243. participantInfo?: IProcedureParticipantInfo;
  244. conditionInfo?: IConditionInfoItem[];
  245. condition?: {
  246. ID: string;
  247. processID: string;
  248. field: string;
  249. fieldValue: string;
  250. };
  251. // 步骤事项中的造价是否可编辑
  252. costEditable?: boolean;
  253. }
  254. export interface IProcedureItem {
  255. ID: string;
  256. approvalStatus: string;
  257. content: string;
  258. approvalTime: string;
  259. executor?: IProcessExecutor;
  260. collaborators?: ICollaborator[];
  261. isReportProcess?: boolean;
  262. // members?: executorMember[];
  263. approvalWay?: string;
  264. dynamicSteps?: SimpleDynamicStep[];
  265. stepMatters?: IStepMatter[];
  266. nextProcessSectorType?: SectorType;
  267. conclusion?: string;
  268. addition?: string;
  269. reduction?: string;
  270. configure?: IParticipantConfig[];
  271. }
  272. export interface IApproval {
  273. ID: string;
  274. name: string;
  275. createdID: string;
  276. createdTime: number;
  277. process: IProcess[];
  278. templateProcess?: IProcedureProcess[]; // 三合一需要用的流程模板
  279. subjectID?: string;
  280. businessType?: BusinessTypeKey;
  281. }
  282. export enum ApprovalStatus {
  283. CREATED = 'created', // 创建完成
  284. PROCESSING = 'processing', // 正在审批
  285. APPROVED = 'approved', // 审批通过
  286. }
  287. // 审核费用类型
  288. export enum AuditMoneyType {
  289. // 建设项目相关费用
  290. CONSTRUCTION = 'construction',
  291. // 费用项
  292. FEE_ITEM = 'feeItem',
  293. }
  294. export interface IProcessAuditMoney {
  295. ID: string;
  296. type: AuditMoneyType;
  297. // 来源ID,有的数据是基于某条数据拷贝而来的,sourceID为被拷贝数据的ID,方便查找源数据
  298. sourceID?: string;
  299. processID: string;
  300. data: any[];
  301. }
  302. // 复制到项目里的流程
  303. export interface IProjectApproval extends IApproval {
  304. financialProjectID: string; // 财审项目ID
  305. constructionID: string; // 建设项目ID
  306. projectIDs: string[]; // 包含在流程里的项目(单位工程)
  307. status: ApprovalStatus; // 状态
  308. approvalTime?: number; // 审批通过时间
  309. currentProcessID?: string; // 当前正处于哪个环节ID
  310. businessID?: string; // 业务ID
  311. gatherID?: string;
  312. }
  313. // 三合一项目里的流程
  314. export interface IProcedureApproval {
  315. ID: string;
  316. gatherID: string;
  317. businessType: BusinessTypeKey;
  318. businessID: string;
  319. templateProcess: IProcedureProcess[];
  320. process: IProcedureProcess[];
  321. }
  322. // 流程过程中存储的数据
  323. export interface IProcessData {
  324. ID: string;
  325. module: CptModelName | SubModelName; // 编辑的模块
  326. action: ActionType; // 动作,增删改等
  327. oDoc: any; // 存放删除时或者修改时的数据
  328. createTime: number; // 创建时间
  329. }
  330. // 备份数据集合
  331. export interface IProcessDataDoc {
  332. projectID: string;
  333. processID: string;
  334. index: number;
  335. processData: IProcessData[];
  336. }
  337. // 环节状态(精简)
  338. export enum SimpleProcessStatus {
  339. APPROVED = 'approved', // 审批通过
  340. FAILED = 'failed', // 失败
  341. REPORTED = 'reported', // 上报
  342. }
  343. // 审批待办类型
  344. export enum ApprovalType {
  345. APPROVER = 'approver', // 审批
  346. COREVIEW = 'coreview', // 协审
  347. REPORT = 'report', // 上报
  348. }
  349. export enum FinancialProjectStatus {
  350. UNREPORTED = 'unreported',
  351. APPROVING = 'approving',
  352. COMPLETION = 'completion',
  353. }
  354. // 流程环节待办列表项
  355. export interface IApprovalTodoData {
  356. approvalID: string; // 流程 id
  357. processID: string; // 环节 id
  358. financialProjectID: string; // 项目 ID
  359. constructionID?: string; // 建设项目 ID
  360. projectName?: string; // 项目名称
  361. reporterID?: string; // 发起人ID
  362. reporterName?: string; // 发起人名称
  363. lastID?: string; // 上环节ID(暂定为上环节用户ID,之后可能为上环节ID)
  364. lastName?: string; // 上环节名称(暂定为上环节用户名称,之后可能为上环节名称) 三合一是上环节名称
  365. nextID?: string; // 下一个步骤ID(三合一)
  366. nextName?: string; // 下一个步骤名称(三合一)
  367. reportTime?: number; // 上报时间
  368. lastStatus?: SimpleProcessStatus; // 上一环节的状态
  369. approveTime?: number; // 当前环节审批时间
  370. approveType?: SimpleProcessStatus; // 审批办结状态
  371. moveUserID?: string; // 环节流转(用户ID)
  372. moveUserName?: string; // 环节流转(用户名)
  373. approvalStatus?: ApprovalStatus; // 审批流程的状态
  374. type: ApprovalType; // 审批待办类型
  375. gatherID?: string;
  376. }
  377. export interface IApprovalTodoData2 {
  378. approvalID: string; // 流程 id
  379. processID: string; // 环节 id
  380. financialProjectID: string; // 项目 ID
  381. constructionID: string; // 建设项目 ID
  382. projectName?: string; // 项目名称
  383. // reporterID: string; // 发起人ID (删)
  384. // reporterName: string; // 发起人名称(删)
  385. lastID?: string; // 为上环节用户ID
  386. lastName?: string; // 上环节用户名称
  387. // reportTime: number; // 上报时间(删)
  388. lastStatus?: SimpleProcessStatus; // 上环节办结状态
  389. // approveTime: number; // 审批办结时间(删)
  390. approveType?: SimpleProcessStatus; // 审批办结状态
  391. // approvalStatus: ApprovalStatus; // 审批流程的状态(删)
  392. moveUserID?: string; // 环节流转(用户ID)
  393. moveUserName?: string; // 环节流转(用户名)
  394. type: ApprovalType; // 审批待办类型
  395. }
  396. export enum TodoType {
  397. APPROVAL = 'approval',
  398. }
  399. export enum TodoStatus {
  400. REMAIN = 'remain',
  401. COMPLETED = 'completed',
  402. }
  403. export interface ITodo {
  404. ID: string; // 待办 ID
  405. userID: string; // 用户 ID
  406. createdTime: number; // 创建时间(相当于环节流转时间)
  407. completedTime: number; // 完成时间(相当于审批办结时间)
  408. todoType: TodoType;
  409. data: any;
  410. status: TodoStatus;
  411. }
  412. export interface IApprovalTodo extends ITodo {
  413. data: IApprovalTodoData;
  414. }
  415. export enum ChangeRecord {
  416. CURRENT = 'current', // 当前清单
  417. ALLBILLS = 'all-bills', // 全部清单
  418. ALLGLJS = 'all-gljs', // 全部材价
  419. }
  420. export enum BusinessType {
  421. /** 预算 */
  422. BUDGET = 'undo',
  423. /** 结算 */
  424. SETTLEMENT = 'doing',
  425. /** 决算 */
  426. FINAL = 'done',
  427. }
  428. export enum BusinessStatus {
  429. /** 未上报 */
  430. UNREPORTED = 'unreported',
  431. /** 审批中 */
  432. APPROVING = 'approving',
  433. /** 审批完成 */
  434. COMPLETION = 'completion',
  435. }
  436. export interface IBusinessApprovalItem {
  437. ID?: string;
  438. name?: string;
  439. code?: string;
  440. gatherID?: string;
  441. businessType?: BusinessType;
  442. status?: BusinessStatus;
  443. /** 送审时间 */
  444. sendReviewTime?: string;
  445. /** 审结时间 */
  446. completionTime?: string;
  447. /** 送审金额 */
  448. reportMoney?: string;
  449. /** 审结金额 */
  450. conclusion?: string;
  451. /** 审增金额 */
  452. addition?: string;
  453. /** 审减金额 */
  454. reduction?: string;
  455. created?: string;
  456. createdID?: string;
  457. createTime?: string;
  458. }
  459. export interface IConditionSetting {
  460. ID: string;
  461. gatherID: string;
  462. schema?: string;
  463. }
  464. // 审核金额 核减、增金额数据
  465. export interface IAuditSummaryDiff {
  466. // 核减金额
  467. decFee: string;
  468. // 核增金额
  469. incFee: string;
  470. // 核减率
  471. decRate: string;
  472. // 核减率提示
  473. decRateTips?: string;
  474. // 核增率
  475. incRate: string;
  476. // 核增率提示
  477. incRateTips?: string;
  478. }
  479. // 审批金额汇总表数据
  480. export interface IAuditSummaryItem {
  481. // 阶段
  482. stage: string;
  483. // 执行者名称
  484. executor: string;
  485. // 执行者单位
  486. institution: string;
  487. // 审核步骤名称
  488. process: string;
  489. // 审结时间
  490. approvalTime: string;
  491. // 金额
  492. fee: string;
  493. // 大写金额
  494. feeInWords: string;
  495. // 与上一阶段对比
  496. compareToPrev: IAuditSummaryDiff;
  497. // 与上送审对比
  498. compareToReport: IAuditSummaryDiff;
  499. }
  500. // 审核明细数据
  501. export interface IAuditDetailItem {
  502. // 唯一标识,table渲染需要
  503. ID: string;
  504. // 步骤名
  505. process: string;
  506. // 单位
  507. institution: string;
  508. // 姓名
  509. userName: string;
  510. // 角色:负责人、协审
  511. role: string;
  512. // 起始金额
  513. beginFee: string;
  514. // 结束金额
  515. endFee: string;
  516. // 审增
  517. incFee: string;
  518. // 审减
  519. decFee: string;
  520. // 增减比例
  521. rate: string;
  522. // 状态文本
  523. status: string;
  524. // 审核状态
  525. approvalStatus: string;
  526. // 协审为子项
  527. children: IAuditDetailItem[];
  528. }
  529. // 审核意见表(入库数据)
  530. export interface IAuditComment {
  531. ID: string;
  532. // 业务ID
  533. businessID: string;
  534. // 关联模板步骤ID(一个步骤只有一份意见,所以得用模板ID,不能用全环节中的步骤)
  535. refProcessID: string;
  536. // 富文本
  537. richText: string;
  538. // 创建时间
  539. createTime: number;
  540. // 更新时间
  541. updateTime: number;
  542. // 富文本模板(只有第一版才有内容,方便还原模板)
  543. template?: string;
  544. }
  545. // 审核意见历史
  546. export interface IAuditCommentHistory {
  547. // 意见ID
  548. commentID: string;
  549. // 步骤
  550. process: string;
  551. // 版本(第几版)
  552. version: string;
  553. // 执行者
  554. executor: string;
  555. // 单位
  556. institution: string;
  557. // 审批通过时间
  558. approvalTime?: string;
  559. // 审批状态
  560. status: ProcessStatus;
  561. }
  562. // 传统结算未上报数据
  563. export interface ISettlementItem {
  564. // 建设项目ID
  565. constructionID: string;
  566. // 名称
  567. name: string;
  568. // 项目原报金额
  569. orgFee: string;
  570. // 当前步骤审核金额
  571. curFee: string;
  572. // 清单检测合格率
  573. billCheckRate: string;
  574. // 费用项ID
  575. feeID?: string;
  576. // 费用类型
  577. type?: AuditMoneyType;
  578. // 备注
  579. remark?: string;
  580. }
  581. // 传统结算已上报审核数据
  582. export interface ISettlementAuditItem {
  583. // 唯一标识,table渲染需要
  584. ID: string;
  585. // 建设项目ID
  586. constructionID?: string;
  587. // 名称
  588. name: string;
  589. // 起始金额
  590. beginFee?: string;
  591. // 结束金额
  592. endFee?: string;
  593. // 增减金额
  594. incFee?: string;
  595. decFee?: string;
  596. // 增减率
  597. incRate?: string;
  598. decRate?: string;
  599. // 审核通过时间
  600. approvalTime?: string;
  601. // 用户信息
  602. user?: {
  603. name: string;
  604. institution: string;
  605. executor: string;
  606. };
  607. // 审核状态
  608. approvalStatus?: string;
  609. children: ISettlementAuditItem[];
  610. // 数据是否是原始数据(有的费用项是从上一步拷贝而来的,不给删除)
  611. isOriginal?: boolean;
  612. // 费用项ID
  613. feeID?: string;
  614. // 费用类型
  615. type?: AuditMoneyType;
  616. // 备注
  617. remark?: string;
  618. }
  619. // 概算预算阶段造价对比 审核明细表格数据
  620. export interface IBudgetEstimateTableItem {
  621. name: string;
  622. // 原报金额
  623. reportFee: string;
  624. // 审核金额
  625. auditFee: string;
  626. // 增减金额
  627. incFee?: string;
  628. decFee?: string;
  629. // 增减率
  630. incRate?: string;
  631. decRate?: string;
  632. // 审核状态
  633. approvalStatus?: string;
  634. // 审核状态文本
  635. approvalStatusText?: string;
  636. }