|
|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -30,7 +31,7 @@ import java.io.Serializable;
|
|
|
|
|
public class MesTooling extends BaseBean implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = -5033127912658757665L;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TOOLING_CODE ")
|
|
|
|
|
@Column(name = "TOOLING_CODE")
|
|
|
|
|
@ApiParam("工装代码")
|
|
|
|
|
private String toolingCode ;
|
|
|
|
|
|
|
|
|
@ -49,4 +50,12 @@ public class MesTooling extends BaseBean implements Serializable {
|
|
|
|
|
@Column(name = "USE_TIME_MAX")
|
|
|
|
|
@ApiParam("最大使用时间")
|
|
|
|
|
private String useTimeMax;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REMIND_COUNT")
|
|
|
|
|
@ApiParam("提醒次数")
|
|
|
|
|
private Integer remindCount;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("使用次数")
|
|
|
|
|
private Integer useCount;
|
|
|
|
|
}
|
|
|
|
|