Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
42a8fb357f
@ -0,0 +1,46 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : 安灯任务附属表
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @CreateDate : 2019-09-27 19:58
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="ANDON_MANAGE_ATTACH")
|
||||
@Api(value="安灯任务附属信息")
|
||||
public class AndonQueueAttach extends BaseBean {
|
||||
|
||||
@Column(name="PROD_INFO")
|
||||
@ApiParam(value ="产品信息" , example ="-1")
|
||||
private String prodInfo;
|
||||
|
||||
@Column(name="LINE_INFO")
|
||||
@ApiParam(value ="产线信息")
|
||||
private String lineInfo;
|
||||
|
||||
@Column(name="ANDON_ORDER_NO")
|
||||
@ApiParam(value ="安灯任务编号")
|
||||
private String andonOrderNo;
|
||||
|
||||
@Column(name="STATUS_CODE")
|
||||
@ApiParam(value ="安灯状态")
|
||||
private String statusCode;
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonAlarmCause;
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonQueueAttach;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 安灯附属表
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @CreateDate : 2019-09-28
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonQueueAttachRepository extends BaseRepository<AndonQueueAttach, Long> {
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.aps.holders;
|
||||
|
||||
public enum EParentWork {
|
||||
ProductOrder,
|
||||
Works
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
package cn.estsh.i3plus.pojo.aps.holders;
|
||||
|
||||
public enum EProductOrder {
|
||||
ProductRouting
|
||||
ProductRouting,
|
||||
ParentWorks
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
package cn.estsh.i3plus.pojo.aps.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.aps.bean.ParentWork;
|
||||
import org.springframework.data.repository.CrudRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface ParentWorkRepository extends CrudRepository<ParentWork, Long> {
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Class name="ParentWork">
|
||||
<Relation field="Works" name="Work" reverse="ParentWork" type="ONE_TO_MULTI" owner="true">
|
||||
</Relation>
|
||||
</Class>
|
@ -1,3 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Class name="ProductOrder" extends="BaseOrder">
|
||||
<Relation field="ParentWorks" name="ParentWork" reverse="ProductOrder" type="ONE_TO_MULTI" owner="true">
|
||||
</Relation>
|
||||
</Class>
|
@ -0,0 +1,79 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean.iotio;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@Data
|
||||
public class WmsCSOrderDetailsModel implements Serializable {
|
||||
|
||||
|
||||
|
||||
/******
|
||||
*
|
||||
* 工厂代码
|
||||
*/
|
||||
public String organizeCode;
|
||||
|
||||
|
||||
/******
|
||||
*
|
||||
* 库位编码
|
||||
*/
|
||||
public String locateNo;
|
||||
|
||||
/******
|
||||
*
|
||||
* 订单编码
|
||||
*/
|
||||
public String orderNo;
|
||||
|
||||
|
||||
/******
|
||||
*
|
||||
* 物料代码
|
||||
*/
|
||||
public String partNo;
|
||||
|
||||
/******
|
||||
*
|
||||
* 物料名称
|
||||
*/
|
||||
public String partNameRdd;
|
||||
|
||||
/******
|
||||
*
|
||||
* 冻结数量
|
||||
*/
|
||||
public String qty;
|
||||
|
||||
/******
|
||||
*
|
||||
* 实盘数量
|
||||
*/
|
||||
public String factQty;
|
||||
|
||||
/******
|
||||
*
|
||||
* 条码
|
||||
*/
|
||||
public String sn;
|
||||
|
||||
|
||||
/******
|
||||
*
|
||||
* 仓库编码
|
||||
*/
|
||||
public String whNo;
|
||||
|
||||
/******
|
||||
*
|
||||
* 区域编码
|
||||
*/
|
||||
public String zoneNo;
|
||||
|
||||
/******
|
||||
*
|
||||
* 状态
|
||||
*/
|
||||
public String wmStatus;
|
||||
}
|
Loading…
Reference in New Issue