|
|
|
@ -11,8 +11,10 @@ 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;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
/**
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Author: jokelin
|
|
|
|
@ -53,4 +55,8 @@ public class MesBoardPlanCapacity extends BaseBean implements Serializable {
|
|
|
|
|
@Column(name = "PLAN_CAPACITY")
|
|
|
|
|
@ApiParam("计划产量")
|
|
|
|
|
private Integer planCapacity;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("看板时段计划产量")
|
|
|
|
|
private List<MesBoardShiftSectionCapacity> boardShiftSectionCapacities;
|
|
|
|
|
}
|
|
|
|
|