Commit ed0570c4 authored by 赵啸非's avatar 赵啸非

重构部分功能模块

parent 9de1d062
Pipeline #2312 failed with stages
......@@ -30,4 +30,7 @@ public final class Constant {
public final static String Param_sealWay = "sealWay";
public final static String Param_typeOptions = "typeOptions";
/** 数字样表机名称 */
public final static String PARAMS_PRODUCT_NAME = "productName";
}
......@@ -44,7 +44,7 @@ public class DeviceServiceImpl extends AbstractCRUDServiceImpl<DeviceDao, Device
DevicePdu devicePdu = new DevicePdu();
BeanUtils.copyProperties(entity, devicePdu, BeanUtil.getNullPropertyNames(entity));
String productName = GlobalSysInfo.getParamValue(Constant.PARAMS_PRODUCT_NAME, "数字样表机");
String productName = GlobalSysInfo.getParamValue(Constant.PARAMS_PRODUCT_NAME, "数字填单机");
devicePdu.setProductName(productName);
Rest<RespData<List<DevicePdu>>> rest = deviceFeign.list(devicePdu);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment