|
|
@ -94,8 +94,17 @@ export interface QcInspectionItemVO {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
isDefault: string;
|
|
|
|
isDefault: string;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型名称
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeName: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型编码
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeCode: string | number;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export interface QcInspectionItemForm extends BaseEntity {
|
|
|
|
export interface QcInspectionItemForm extends BaseEntity {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 检测项主键
|
|
|
|
* 检测项主键
|
|
|
@ -192,6 +201,16 @@ export interface QcInspectionItemForm extends BaseEntity {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
isDefault?: string;
|
|
|
|
isDefault?: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型名称
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeName?: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型编码
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeCode?: string | number;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export interface QcInspectionItemQuery extends PageQuery {
|
|
|
|
export interface QcInspectionItemQuery extends PageQuery {
|
|
|
@ -291,6 +310,17 @@ export interface QcInspectionItemQuery extends PageQuery {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
isDefault?: string;
|
|
|
|
isDefault?: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型名称
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeName?: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 检测类型编码
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typeCode?: string | number;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 日期范围参数
|
|
|
|
* 日期范围参数
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|