| | |
| | | import com.qianwen.smartman.modules.system.service.IParamService; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/service/impl/ParamServiceImpl.class */ |
| | | public class ParamServiceImpl extends BaseServiceImpl<ParamMapper, Param> implements IParamService { |
| | | private static final Logger log = LoggerFactory.getLogger(ParamServiceImpl.class); |
| | | private final IFmsInstructionRecordService instructionRecordService; |
| | |
| | | this.fmsForestClient = fmsForestClient; |
| | | } |
| | | |
| | | @Override // org.springblade.modules.system.service.IParamService |
| | | @Override |
| | | public String getValue(String paramKey) { |
| | | Param param = getOne(Wrappers.<Param>query().lambda().eq(Param::getParamKey, paramKey)); |
| | | /* |
| | |
| | | return param.getParamValue(); |
| | | } |
| | | |
| | | @Override // org.springblade.modules.system.service.IParamService |
| | | @Override |
| | | @Transactional(rollbackFor = {Exception.class}) |
| | | public void startSwitching() { |
| | | Param fmsParam = getOne(Wrappers.<Param>lambdaQuery().eq(Param::getParamName, FmsConstant.PARAM_NAME)); |
| | |
| | | changeToDoDmp(fms); |
| | | } |
| | | |
| | | @Override // org.springblade.modules.system.service.IParamService |
| | | @Override |
| | | @Transactional(rollbackFor = {Exception.class}) |
| | | public void switchState(SwitchDTO switchDTO) { |
| | | String paramValue = switchDTO.getParamValue(); |
| | |
| | | } |
| | | } |
| | | |
| | | @Override // org.springblade.modules.system.service.IParamService |
| | | @Override |
| | | public SwitchDTO orderStartStatus() { |
| | | Param fmsParam = getOne(Wrappers.<Param>lambdaQuery().eq(Param::getParamName, FmsConstant.PARAM_NAME)); |
| | | /* |