mgn-bj 半成品看板

yun-zuoyi
joke.wang 5 years ago
parent dceb9b17a5
commit 63b7162932

@ -3656,7 +3656,9 @@ public class MesEnumUtil {
public enum QUEUE_ORDER_DETAIL_STATUS {
NORMAL(10, "正常"),
CLOSE(20, "关闭");
CLOSE(20, "关闭"),
FINISH(30, "完成"),
OFF_LINE_REWORK(40, "线下返修");
private int value;
private String description;

@ -96,6 +96,10 @@ public class MesPartStockSchedule extends BaseBean implements Serializable {
private Integer alreadyLandedNum;
@Transient
@ApiParam("当前库存")
private Integer currentStock;
@Transient
@ApiParam("物料名称")
private String partName;
}

@ -28,6 +28,12 @@ public class SkillsUserModel {
@ApiParam(value ="工号")
private String userEmpNo;
@ApiParam(value ="工位")
private String workCellCode;
@ApiParam(value ="产线")
private String workCenterCode;
@ApiParam("技能矩阵信息")
private List<MesUserSkill> mesUserSkillList;

@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* @Description:
@ -13,10 +14,12 @@ import java.util.List;
* @Modify:
*/
@Data
public class BjBoardModel implements Serializable {
public class MgnBjBoardModel implements Serializable {
@ApiParam("jsa数量")
private Integer jsaQty;
@ApiParam("jsa数量")
private Integer jsaRate;
@ApiParam("完成数量")
private Integer completeQty;
@ApiParam("总数量")
@ -36,6 +39,8 @@ public class BjBoardModel implements Serializable {
@ApiParam("x坐标内容")
private List<String> xAxisList;
private Map<String, Object> resultMap;
@ApiParam("显示数据")
private List<BjBoardSeriesModel> seriesModels;
private List<MgnBjBoardSeriesModel> seriesModels;
}

@ -10,7 +10,7 @@ import lombok.Data;
* @Modify:
*/
@Data
public class BjBoardSeriesModel {
public class MgnBjBoardSeriesModel {
@ApiParam("名称")
private String name;
@ApiParam("显示数量")

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;

@ -1,5 +1,6 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Pn;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import lombok.Data;

@ -1,5 +1,6 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.apache.commons.lang3.StringUtils;

@ -1,5 +1,6 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi.Part;
import lombok.Data;
import java.util.List;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import io.swagger.annotations.ApiParam;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.Data;

@ -1,4 +1,4 @@
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
package cn.estsh.i3plus.pojo.mes.model.mgn.bj.edi;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import io.swagger.annotations.ApiParam;

@ -241,10 +241,10 @@ public class MesHqlPack {
DdlPreparedPack.getStringEqualPack(mesQueueOrder.getWorkType(), "workType", packBean);
}
if (!StringUtils.isEmpty(mesQueueOrder.getCustProdLineCode())) {
DdlPreparedPack.getStringLikePack(mesQueueOrder.getCustProdLineCode(), "custProdLineCode", packBean);
DdlPreparedPack.getStringLikerPack(mesQueueOrder.getCustProdLineCode(), "custProdLineCode", packBean);
}
if (!StringUtils.isEmpty(mesQueueOrder.getPgCode())) {
DdlPreparedPack.getStringLikePack(mesQueueOrder.getPgCode(), "pgCode", packBean);
DdlPreparedPack.getStringLikerPack(mesQueueOrder.getPgCode(), "pgCode", packBean);
}
if (mesQueueOrder.getQueueType() != null) {
DdlPreparedPack.getNumEqualPack(mesQueueOrder.getQueueType(), "queueType", packBean);

Loading…
Cancel
Save