涂装质检 待定 重构
parent
74947bfaf8
commit
fb4b10e689
@ -0,0 +1,36 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: 业务队列model
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate: 2020-06-28-11:44
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class BusiQueueDispatchModel<T> {
|
||||
|
||||
@ApiParam("实现类")
|
||||
private Object busDispatchervice;
|
||||
|
||||
@ApiParam("组织代码")
|
||||
private String organizeCode;
|
||||
|
||||
@ApiParam("key")
|
||||
private String key;
|
||||
|
||||
@ApiParam("数据")
|
||||
private Object Obj;
|
||||
|
||||
@ApiParam("信息")
|
||||
private String info;
|
||||
|
||||
@ApiParam("集合")
|
||||
private List<T> list;
|
||||
|
||||
}
|
Loading…
Reference in New Issue