比对系数下发全局配置
This commit is contained in:
@@ -35,9 +35,25 @@ export namespace StandardDevice {
|
||||
updateBy?: string | null; //更新用户
|
||||
updateTime?: string | null; //更新时间
|
||||
disabled?: boolean;
|
||||
gainList?:Gain[]
|
||||
}
|
||||
|
||||
|
||||
interface Gain{
|
||||
stdDevMonitorId:string;
|
||||
uaGain:number;
|
||||
ubGain:number;
|
||||
ucGain:number;
|
||||
u0Gain:number;
|
||||
iaGain:number;
|
||||
ibGain:number;
|
||||
icGain:number;
|
||||
i0Gain:number;
|
||||
uabGain:number;
|
||||
ubcGain:number;
|
||||
ucaGain:number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 标准设备表格查询分页返回的对象;
|
||||
*/
|
||||
|
||||
@@ -57,3 +57,14 @@ export const getPublicKey = (username: string) => {
|
||||
export const getAutoGenerate = () => {
|
||||
return http.get('/sysTestConfig/getAutoGenerate', {}, {loading: false})
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取比对模式下是否能够进行系数校准
|
||||
*/
|
||||
export const getCanCoefficient=()=>{
|
||||
return http.get('/prepare/canCoefficient', {}, {loading: false})
|
||||
}
|
||||
|
||||
export const startCoefficient=()=>{
|
||||
return http.get('/prepare/startCoefficient', {}, {loading: false})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user