|  |  |  | 
|---|
|  |  |  | * 任务状态 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiModelProperty(value= "任务状态") | 
|---|
|  |  |  | private Short taskStatus; | 
|---|
|  |  |  | private Integer taskStatus; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 任务类型 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiModelProperty(value= "任务类型") | 
|---|
|  |  |  | private Short taskType; | 
|---|
|  |  |  | private Integer taskType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 源库位 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public TaskLog() {} | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public TaskLog(Long taskId,String taskCode,Short taskStatus,Short taskType,String orgLoc,String targLoc,String barcode,String robotCode,Short exceStatus,String expDesc,Short sort,String expCode,Date startTime,Date endTime,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { | 
|---|
|  |  |  | public TaskLog(Long taskId,String taskCode,Integer taskStatus,Integer taskType,String orgLoc,String targLoc,String barcode,String robotCode,Short exceStatus,String expDesc,Short sort,String expCode,Date startTime,Date endTime,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { | 
|---|
|  |  |  | this.taskId = taskId; | 
|---|
|  |  |  | this.taskCode = taskCode; | 
|---|
|  |  |  | this.taskStatus = taskStatus; | 
|---|
|  |  |  | 
|---|
|  |  |  | DictData dictDatas = dictDataService.getOne(new LambdaQueryWrapper<DictData>() | 
|---|
|  |  |  | .eq(DictData::getDictTypeCode, DictTypeCode.DICT_SYS_TASK_TYPE) | 
|---|
|  |  |  | .eq(DictData::getValue, this.taskType)); | 
|---|
|  |  |  | if (Objects.isNull(dictDatas) || Objects.isNull(dictDatas.getLabel())) { | 
|---|
|  |  |  | if (Cools.isEmpty(dictDatas)) { | 
|---|
|  |  |  | return null; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return dictDatas.getLabel(); | 
|---|