add(dms): DmsBillsInspectInstance增加路由名称字段

- 在 DmsBillsInspectInstance 接口中添加 routeName 属性
- 在 DmsBillsInspectInstanceForm 和 DmsBillsInspectInstanceQuery 接口中添加可选的 routeName 属性
master
zch 2 weeks ago
parent 28f8106c47
commit 85ac97fc65

@ -59,8 +59,9 @@ export interface DmsBillsInspectInstanceVO {
*/ */
remark: string; remark: string;
} routeName: string;
}
export interface DmsBillsInspectInstanceForm extends BaseEntity { export interface DmsBillsInspectInstanceForm extends BaseEntity {
/** /**
* *
@ -127,6 +128,8 @@ export interface DmsBillsInspectInstanceForm extends BaseEntity {
*/ */
status?: string; status?: string;
routeName?: string;
} }
export interface DmsBillsInspectInstanceQuery extends PageQuery { export interface DmsBillsInspectInstanceQuery extends PageQuery {
@ -186,6 +189,8 @@ export interface DmsBillsInspectInstanceQuery extends PageQuery {
*/ */
inspectStatus?: string; inspectStatus?: string;
routeName?: string;
/** /**
* *
*/ */

Loading…
Cancel
Save