forked from I3-YF/i3plus-mes-pcn-yfai
上下文 物料
parent
5e1f6de520
commit
2314130e5a
@ -0,0 +1,23 @@
|
|||||||
|
package cn.estsh.i3plus.ext.mes.pcn.pojo.context;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPart;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产过程上下文对象-零件条码(非排序产出零件条码)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class MesPartContext extends MesPart implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1221271846639577097L;
|
||||||
|
|
||||||
|
|
||||||
|
public MesPartContext(MesPart part) {
|
||||||
|
BeanUtils.copyProperties(part, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue