| | |
| | | */ |
| | | private String poLineNo; |
| | | /** |
| | | * 计划行号 |
| | | */ |
| | | private String planLineNo; |
| | | /** |
| | | * 产品编码 |
| | | */ |
| | | private String productCode; |
| | |
| | | if (StrUtil.isNotEmpty(detail.getPoLineNo())) { |
| | | String[] split = detail.getPoLineNo().split("-"); |
| | | detail.setPoLineNo(split[0]); |
| | | detail.setPlanLineNo(split[1]); |
| | | } |
| | | |
| | | noticeDetails.add(detail); |
| | |
| | | XkyCommonParam param = XkyCommonParam.GetInit(); |
| | | |
| | | // 计算五分钟前的时间戳 |
| | | long startDate = currentTimeMillis - (20 * 60 * 1000); // 5 分钟 = 5 * 60 * 1000 毫秒 |
| | | long startDate = currentTimeMillis - (20 * 60 * 1000); // 1 分钟 = 1 * 60 * 1000 毫秒 |
| | | |
| | | // 创建 BodyParam 对象并赋值 |
| | | BodyParam bodyParam = new BodyParam(); |