|
|
|
@ -10,6 +10,7 @@ import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
@ -39,6 +40,12 @@ import java.io.Serializable;
|
|
|
|
|
@Api("生产数据")
|
|
|
|
|
public class MesProductData extends BaseBean implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = 4514407617515827040L;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SYSTEM_SYNC_STATUS")
|
|
|
|
|
@ColumnDefault("2")
|
|
|
|
|
@ApiParam(value = "系统同步标志")
|
|
|
|
|
public Integer systemSyncStatus = 2;
|
|
|
|
|
|
|
|
|
|
@Column(name = "WORK_CENTER_CODE")
|
|
|
|
|
@ApiParam("工作中心")
|
|
|
|
|
private String workCenterCode;
|
|
|
|
|