Merge remote-tracking branch 'origin/test' into test
commit
56b1ae99a9
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.mes.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;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/6 1:25 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BYPASS_MAPPING")
|
||||
@Api("MES_BYPASS项映射关系")
|
||||
public class MesBypassMapping extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6362769913660089402L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "BYPASS_SEQ")
|
||||
@ApiParam("BYPASS项序号")
|
||||
private Integer bypassSeq;
|
||||
|
||||
@Column(name = "CHECK_NAME")
|
||||
@ApiParam("检测项描述")
|
||||
private String checkName;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBypassMapping;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/6 1:30 下午
|
||||
* @Modify:
|
||||
*/
|
||||
public interface MesBypassMappingRepository extends BaseRepository<MesBypassMapping, Long> {
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : MGN质检报表(通过查询视图实现)
|
||||
* @Reference :
|
||||
* @Author : puxiao.liao
|
||||
* @CreateDate : 2020-09-01 14:37
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("质检报表")
|
||||
public class WmsQCViewReport extends BaseBean {
|
||||
private static final long serialVersionUID = 4905945381732744790L;
|
||||
|
||||
@ApiParam("单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam("检验数量")
|
||||
private double sampleQty;
|
||||
|
||||
@ApiParam("不合格数量")
|
||||
private double rejectQty;
|
||||
|
||||
@ApiParam("检验员")
|
||||
private String qcUser;
|
||||
|
||||
@ApiParam(value = "检验时间")
|
||||
private String qcTime;
|
||||
|
||||
@ApiParam(value = "收货数量")
|
||||
public Double rcQty;
|
||||
|
||||
@ApiParam(value = "质检比例")
|
||||
public String qcScale;
|
||||
}
|
Loading…
Reference in New Issue