| | |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.modules.eam.constant.BusinessCodeConst; |
| | | import org.jeecg.modules.eam.entity.EamPrecisionParameters; |
| | | import org.jeecg.modules.eam.entity.EamProcessParameters; |
| | | import org.jeecg.modules.eam.service.IEamPrecisionParametersService; |
| | | import org.jeecg.modules.system.service.ISysBusinessCodeRuleService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 精度参数维护 |
| | |
| | | return super.importExcel(request, response, EamPrecisionParameters.class); |
| | | } |
| | | |
| | | @ApiOperation(value = "精度参数维护-查询所有", notes = "精度参数维护-查询所有") |
| | | @GetMapping(value = "/listAll") |
| | | public Result<?> listAll() { |
| | | QueryWrapper<EamPrecisionParameters> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("del_flag", CommonConstant.DEL_FLAG_0); |
| | | List<EamPrecisionParameters> list = eamPrecisionParametersService.list(queryWrapper); |
| | | return Result.OK(list); |
| | | } |
| | | |
| | | } |