Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
564fdb261b
@ -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.MesStateMachine;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Author : simon.song
|
||||
* @CreateDate : 2020-09-01
|
||||
**/
|
||||
public interface MesStateMachineRepository extends BaseRepository<MesStateMachine, Long> {
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.ColumnDefault;
|
||||
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 : rock.yu
|
||||
* @CreateDate : 2020-09-01 14:37
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_QC_SN_ERROR_LIST")
|
||||
@Api("质检单条码质检不良清单表")
|
||||
public class WmsQCSNErrorList extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 7779401323803118985L;
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
public String orderNo;
|
||||
|
||||
@Column(name="ITEM")
|
||||
@ApiParam("行号")
|
||||
public String item;
|
||||
|
||||
/**
|
||||
* 状态:1=创建,10=已处理
|
||||
*/
|
||||
@Column(name="ITEM_STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
public Integer itemStatus;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
public String remark;
|
||||
|
||||
@Column(name="PASS_QTY", nullable = false)
|
||||
@ApiParam("合格数量")
|
||||
@ColumnDefault("0")
|
||||
public double passQty;
|
||||
|
||||
@Column(name="REJECT_QTY", nullable = false)
|
||||
@ApiParam("不合格数量")
|
||||
@ColumnDefault("0")
|
||||
public double rejectQty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
public String unit;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
public String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
public String partNameRdd;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@Column(name = "QC_USER")
|
||||
@ApiParam("检验员")
|
||||
public String qcUser;
|
||||
|
||||
@Column(name = "QC_TIME")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value = "检验时间", example = "2000-01-01 01:00:00")
|
||||
public String qcTime;
|
||||
|
||||
@Column(name = "VENDOR_NO")
|
||||
@ApiParam(value = "供应商编码")
|
||||
public String vendorNo;
|
||||
}
|
Loading…
Reference in New Issue