task 任务重试测试

yun-zuoyi
luweihao 5 years ago
parent 5eb7cf03ed
commit 5fd51f6b1d

@ -155,7 +155,7 @@ public class MesWorkOrder extends BaseBean implements Serializable {
@Version @Version
@Column(name = "LOCK_VERSION") @Column(name = "LOCK_VERSION")
@ApiParam(value = "乐观锁", example = "1") @ApiParam(value = "乐观锁", example = "1")
public Integer lockVersion; public transient Integer lockVersion;
/********************** 冗余字段 *********************************/ /********************** 冗余字段 *********************************/
@Transient @Transient

@ -0,0 +1,25 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author Wynne.Lu
* @date 2020/2/21 17:20
* @desc
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Api("工位监控观察者对象")
public class PcsObserverStatusModel {
@ApiParam("产线")
private String workCenterCode;
@ApiParam("运行状况")
private Boolean runningStatus;
}
Loading…
Cancel
Save