Merge remote-tracking branch 'origin/test' into test
commit
532e99eb8b
@ -0,0 +1,28 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/9 15:35
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
public class TjMgnBoardEquipmentMonitorModel {
|
||||
|
||||
@ApiParam("工位")
|
||||
private String workCellCode;
|
||||
|
||||
@ApiParam("横坐标")
|
||||
private Double xAxes = 0d;
|
||||
|
||||
@ApiParam("纵坐标")
|
||||
private Double yAxes = 0d;
|
||||
|
||||
@ApiParam("工位状态")
|
||||
private String workCellStatus;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String color;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Pn;
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
||||
import lombok.Data;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.apache.commons.lang3.StringUtils;
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import io.swagger.annotations.ApiParam;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import io.swagger.annotations.ApiParam;
|
@ -0,0 +1,45 @@
|
||||
package cn.estsh.i3plus.pojo.model.softswitch;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.BlockSoftSwitchEnumUtil;
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitCaseParam;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* 软适配执行适配器(客户端服务端适配总入口)
|
||||
* 所需的参数模型
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-10-28 15:51
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class SuitModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 8981933192688480221L;
|
||||
|
||||
@ApiParam(value = "适配器代码")
|
||||
private String suitCaseCode;
|
||||
|
||||
@ApiParam(value = "适配SID")
|
||||
private String suitSid;
|
||||
|
||||
@AnnoOutputColumn(refClass = BlockSoftSwitchEnumUtil.REQUEST_SOURCE.class)
|
||||
@ApiParam(value = "适配来源")
|
||||
private Integer requestSource;
|
||||
|
||||
@ApiParam(value = "重试记录id")
|
||||
private Long retryRecordId;
|
||||
|
||||
@ApiParam(value = "适配器参数XML")
|
||||
private String paramXml;
|
||||
|
||||
@ApiParam(value = "适配器参数")
|
||||
private List<BsSuitCaseParam> bsSuitCaseParamList;
|
||||
|
||||
}
|
Loading…
Reference in New Issue