【8528 收货检验-图片上传未开发】
parent
cb317c1edd
commit
8ab6e77620
@ -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:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: jessica.chen
|
||||||
|
* @CreateDate: 2019\11\15 10:01
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QC_ORDER_ACCESSORY")
|
||||||
|
@Api("MES_检验单附件")
|
||||||
|
public class MesQcOrderAccessory extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
//private static final long serialVersionUID = -5412635747424111476L;
|
||||||
|
@Column(name = "ORDER_NO")
|
||||||
|
@ApiParam("质检单号")
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@Column(name = "ACCESSORY_NAME")
|
||||||
|
@ApiParam("附件名称")
|
||||||
|
private String accessoryName;
|
||||||
|
|
||||||
|
@Column(name = "ACCESSORY_URL")
|
||||||
|
@ApiParam("附件路径")
|
||||||
|
private String accessoryUrl;
|
||||||
|
}
|
@ -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.MesQcOrderAccessory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:34
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQcOrderAccessoryRepository extends BaseRepository<MesQcOrderAccessory, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue