zhangherong
9 天以前 7d5d6d104b0ad994b62b53683d752b4fec61b8c1
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamTechnicalStatusEvaluationStandardController.java
@@ -10,7 +10,7 @@
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.eam.constant.BusinessCodeConst;
import org.jeecg.modules.eam.constant.TechnicalStatusEvaluationStandardEnum;
import org.jeecg.modules.eam.constant.TechnicalStatusEvaluationStandardStatusEnum;
import org.jeecg.modules.eam.entity.EamTechnicalStatusEvaluationStandard;
import org.jeecg.modules.eam.request.EamTechnicalStatusEvaluationStandardRequest;
import org.jeecg.modules.eam.service.IEamTechnicalStatusEvaluationStandardService;
@@ -160,7 +160,7 @@
    public Result<?> submit(@RequestParam(name = "id", required = true) String id) {
        EamTechnicalStatusEvaluationStandard entity = eamTechnicalStatusEvaluationStandardService.getById(id);
        if (entity != null) {
            entity.setStandardStatus(TechnicalStatusEvaluationStandardEnum.ENABLE.name());
            entity.setStandardStatus(TechnicalStatusEvaluationStandardStatusEnum.ENABLE.name());
            eamTechnicalStatusEvaluationStandardService.updateById(entity);
        }
        return Result.OK("提交成功!");