Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
7ee5312303
@ -0,0 +1,48 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: wangjie
|
||||||
|
* @CreateDate: 2019/8/21 9:19 AM
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Api("mes生产工单页面按钮控制model")
|
||||||
|
public class MesWorkOrderButtonModel implements Serializable {
|
||||||
|
|
||||||
|
@ApiParam("修改按钮")
|
||||||
|
private boolean updateButton;
|
||||||
|
|
||||||
|
@ApiParam("按配置修改按钮")
|
||||||
|
private boolean updateButton4Config;
|
||||||
|
|
||||||
|
@ApiParam("下达按钮")
|
||||||
|
private boolean transmitButton;
|
||||||
|
|
||||||
|
@ApiParam("测试动态下达按钮")
|
||||||
|
private boolean dynamicTransmitButton4Test;
|
||||||
|
|
||||||
|
@ApiParam("启动按钮")
|
||||||
|
private boolean startUpButton;
|
||||||
|
|
||||||
|
@ApiParam("暂停按钮")
|
||||||
|
private boolean suspendButton;
|
||||||
|
|
||||||
|
@ApiParam("撤销按钮")
|
||||||
|
private boolean revokeButton;
|
||||||
|
|
||||||
|
@ApiParam("关闭按钮")
|
||||||
|
private boolean closeButton;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 领料单模板
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/8/19 17:10
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Api(value="领料单模板",description = "领料单模板")
|
||||||
|
public class WmsPickingMovement extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 2167743108452607620L;
|
||||||
|
|
||||||
|
@ApiParam(value = "领料单号")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "物料编码")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "领料数量")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private Double qty;
|
||||||
|
|
||||||
|
@ApiParam(value = "源存储区")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String srcZoneNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "目标存储区")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String destZoneNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "目标库位")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String destLocateNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "工厂")
|
||||||
|
@AnnoOutputColumn
|
||||||
|
private String factory;
|
||||||
|
}
|
Loading…
Reference in New Issue