| | |
| | | * 预计到达时间 |
| | | */ |
| | | @ApiModelProperty(value= "预计到达时间") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | private Date arrTime; |
| | | |
| | | /** |
| | |
| | | return ""; |
| | | } |
| | | DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); |
| | | DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>().eq(DictData::getDictTypeCode, DictTypeCode.DICT_SYS_ORDER_TYPE).eq(DictData::getValue, this.type)); |
| | | DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>() |
| | | .eq(DictData::getDictTypeCode, DictTypeCode.DICT_SYS_ORDER_TYPE) |
| | | .eq(DictData::getValue, this.type)); |
| | | if (Objects.isNull(dictData)) { |
| | | return null; |
| | | } |
| | |
| | | return null; |
| | | } |
| | | } |
| | | public String getNtyStatus$(){ |
| | | if (null == this.ntyStatus){ return "error"; } |
| | | switch (this.ntyStatus){ |
| | | case 0: |
| | | return "未上报"; |
| | | case 1: |
| | | return "已上报"; |
| | | case 2: |
| | | return "部分上报"; |
| | | default: |
| | | return "error"; |
| | | } |
| | | } |
| | | |
| | | } |