|
|
|
@ -4,16 +4,11 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -54,6 +49,10 @@ public class MesBoardShiftSection extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("是否跨天")
|
|
|
|
|
private Integer isSpanday;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
|
@ApiParam("顺序")
|
|
|
|
|
private String seq;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("班次名称")
|
|
|
|
|
private String shiftName;
|
|
|
|
|