李永德
1 year ago
31 changed files with 108 additions and 98 deletions
Binary file not shown.
@ -1,22 +0,0 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Description: 提供设备信号 |
|||
* @Date: 2023/7/26 |
|||
*/ |
|||
@Data |
|||
public class PutActionRequest extends BaseRequest { |
|||
|
|||
/** |
|||
* 设备号 |
|||
*/ |
|||
private String device_code; |
|||
|
|||
private List<SignalData> list ; |
|||
|
|||
} |
@ -1,4 +1,4 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
|
|||
import lombok.Data; |
|||
|
@ -1,4 +1,4 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to; |
|||
|
|||
import lombok.Data; |
|||
|
@ -1,4 +1,4 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to; |
|||
|
|||
import cn.hutool.core.date.DateUtil; |
|||
import cn.hutool.http.HttpStatus; |
@ -1,8 +1,9 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import cn.hutool.core.date.DateUtil; |
|||
import cn.hutool.http.HttpStatus; |
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
@Data |
|||
public class ApplyTaskResponse extends BaseResponse { |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
|
|||
import java.util.Map; |
|||
|
@ -0,0 +1,6 @@ |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
public class FeedBackTaskStatusResponse extends BaseResponse { |
|||
} |
@ -1,8 +1,9 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import cn.hutool.core.date.DateUtil; |
|||
import cn.hutool.http.HttpStatus; |
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
import org.nl.wms.ext.acs.service.dto.PalletizeDto; |
|||
|
|||
@Data |
@ -0,0 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
public class GrabResponse extends BaseResponse { |
|||
} |
|||
|
@ -0,0 +1,27 @@ |
|||
package org.nl.wms.ext.acs.service.dto.to.acs; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
import org.nl.wms.ext.acs.service.dto.SignalData; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Description: 提供设备信号 lms->acs |
|||
* @Date: 2023/7/26 |
|||
*/ |
|||
@Data |
|||
public class PutActionRequest extends BaseRequest { |
|||
|
|||
/** |
|||
* 设备号 |
|||
*/ |
|||
private String device_code; |
|||
|
|||
/** |
|||
* 信号数据 |
|||
*/ |
|||
private List<SignalData> list; |
|||
|
|||
} |
@ -1,7 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.BaseRequest; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
import org.nl.wms.ext.acs.service.dto.PalletizeDto; |
|||
|
|||
/** |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
/** |
|||
* @Author: lyd |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
/** |
|||
* @Author: lyd |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
|
|||
/** |
|||
* ACS任务反馈请求实体 |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
|
|||
@Data |
|||
public class GetPalletizeRequest extends BaseRequest { |
@ -1,6 +1,7 @@ |
|||
package org.nl.wms.ext.acs.service.dto; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import lombok.Data; |
|||
import org.nl.wms.ext.acs.service.dto.to.BaseRequest; |
|||
|
|||
/** |
|||
* ACS抓取砖块记录信息实体 |
@ -1,4 +1,6 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
package org.nl.wms.ext.acs.service.dto.to.wms; |
|||
|
|||
import org.nl.wms.ext.acs.service.dto.to.BaseResponse; |
|||
|
|||
/** |
|||
* @Author: lyd |
@ -1,4 +0,0 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
|
|||
public class FeedBackTaskStatusResponse extends BaseResponse { |
|||
} |
@ -1,5 +0,0 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
|
|||
public class GrabResponse extends BaseResponse { |
|||
} |
|||
|
@ -1,21 +0,0 @@ |
|||
package org.nl.wms.ext.acs.service.vo; |
|||
|
|||
import cn.hutool.core.date.DateUtil; |
|||
import cn.hutool.http.HttpStatus; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Description: 是否静置完成 |
|||
* @Date: 2023/7/14 |
|||
*/ |
|||
@Data |
|||
public class StandResponse extends BaseResponse { |
|||
private boolean is_success; |
|||
|
|||
public StandResponse() { |
|||
this.setCode(HttpStatus.HTTP_OK); |
|||
this.setResponseDate(DateUtil.now()); |
|||
this.setMessage("操作成功"); |
|||
} |
|||
} |
Loading…
Reference in new issue