This commit is contained in:
parent
77623fb534
commit
9dd653ba4c
|
|
@ -11,6 +11,7 @@ import com.alibaba.fastjson.JSONObject;
|
|||
import com.bonus.common.biz.domain.lease.LeaseApplyInfo;
|
||||
import com.bonus.common.log.enums.OperaType;
|
||||
import com.bonus.material.basic.domain.BmQrcodeInfo;
|
||||
import com.bonus.material.codeCollection.domain.WsMaInfo;
|
||||
import com.bonus.material.common.annotation.PreventRepeatSubmit;
|
||||
import com.bonus.material.ma.domain.MachineSynch;
|
||||
import com.bonus.material.ma.domain.Type;
|
||||
|
|
@ -407,4 +408,11 @@ public class MachineController extends BaseController {
|
|||
return error("查询失败,请联系管理员");
|
||||
}
|
||||
}
|
||||
|
||||
@ApiOperation(value = "批量更新检验时间")
|
||||
@SysLog(title = "批量更新检验时间", businessType = OperaType.UPDATE, logType = 1, module = "设备管理->批量更新检验时间")
|
||||
@PostMapping("/updateDate")
|
||||
public AjaxResult updateDate(@RequestBody Machine info) {
|
||||
return machineService.updateDate(info);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@ public class Machine extends BaseEntity {
|
|||
*/
|
||||
private Long maId;
|
||||
|
||||
private Long[] maIds;
|
||||
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
|
|
@ -335,4 +337,12 @@ public class Machine extends BaseEntity {
|
|||
private String repairMan;
|
||||
|
||||
private Integer manageType;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "模块")
|
||||
private String modelTitle;
|
||||
|
||||
@ApiModelProperty(value = "当前状态")
|
||||
private String oldStatus;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue