Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
f1cfe26378
@ -1,27 +1,27 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 条码补打印
|
||||
* @Description: 打印信息汇总
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate:2019-08-27-13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("打印信息模板")
|
||||
@Api("打印信息汇总")
|
||||
public class SnPrintModel extends SnPrintValueModel {
|
||||
|
||||
@ApiParam("过程条码")
|
||||
private SnPrintDataModel snPrintModel;
|
||||
private SnPrintDataModel serialPrintDataModel;
|
||||
|
||||
@ApiParam("产品条码")
|
||||
private SnPrintDataModel prodPrintModel;
|
||||
private SnPrintDataModel prodPrintDataModel;
|
||||
|
||||
@ApiParam("包装条码")
|
||||
private SnPrintDataModel packagePrintModel;
|
||||
private SnPrintDataModel packPrintDataModel;
|
||||
|
||||
}
|
@ -1,19 +1,19 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProduceSn;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesProduceSn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 条码补打印
|
||||
* @Description: 打印信息
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate:2019-08-27-13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("打印信息模板")
|
||||
@Api("打印信息")
|
||||
public class SnPrintValueModel extends MesProduceSn {
|
||||
@ApiParam("打印描述")
|
||||
private String printDesc;
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPartObject;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\21 17:06
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesPartObjectRepository extends BaseRepository<MesPartObject, Long> {
|
||||
}
|
Loading…
Reference in New Issue