REM:
1. 增加浩瀚设备取消清洗任务请求类
This commit is contained in:
chenlinghy 2020-07-01 16:04:07 +08:00
parent 9fe7ae53a0
commit 32cdcbbac4
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package com.dispose.pojo.vo.haohan;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* The type Stop clean req.
*
* @author <huangxin@cmhi.chinamoblie.com>
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class StopCleanReq {
private Long cleanTaskId;
private String orderFrom;
}