refactor(qms): 更新检测结果类型定义

- 在 qcInspectionResult 类型定义中,将检测结果的可能值从"0合格,1不合格"修改为"0合格,1不合格,2未判定"
- 此修改涉及了三个不同的类型定义:QCInspectionResult、QCInspectionResultUpdate和QCInspectionResultSearch
master
zch 1 week ago
parent bde016be02
commit f5ddf60862

@ -15,7 +15,7 @@ export interface QcInspectionResultVO {
itemId: string | number;
/**
* 01
* 012
*/
detectResult: number;
@ -53,7 +53,7 @@ export interface QcInspectionResultForm extends BaseEntity {
itemId?: string | number;
/**
* 01
* 012
*/
detectResult?: number;
@ -92,7 +92,7 @@ export interface QcInspectionResultQuery extends PageQuery {
itemId?: string | number;
/**
* 01
* 012
*/
detectResult?: number;

Loading…
Cancel
Save