新增打印机配置表
parent
22fbbe2a91
commit
3ba6508b0c
@ -0,0 +1,59 @@
|
|||||||
|
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;
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 打印机配置表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jessica.chen
|
||||||
|
* @CreateDate : 2019-09-26 14:21
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_PRINTER_CONFIGURE")
|
||||||
|
@Api("打印机配置表")
|
||||||
|
public class WmsPrinterConfigure extends BaseBean{
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1234639813072592779L;
|
||||||
|
@Column(name="PRINTER_NO")
|
||||||
|
@ApiParam("打印机编号")
|
||||||
|
private String printerNo;
|
||||||
|
|
||||||
|
@Column(name="PRINTER_NAME")
|
||||||
|
@ApiParam("打印机名称")
|
||||||
|
private String printerName;
|
||||||
|
|
||||||
|
@Column(name="IP")
|
||||||
|
@ApiParam("IP")
|
||||||
|
private String ip;
|
||||||
|
|
||||||
|
@Column(name="PORT")
|
||||||
|
@ApiParam("端口")
|
||||||
|
private Integer port;
|
||||||
|
|
||||||
|
@Column(name="OBJECT_DESCRIPTION")
|
||||||
|
@ApiParam(value ="描述")
|
||||||
|
private String objectDescription;
|
||||||
|
|
||||||
|
@Column(name="POSITION")
|
||||||
|
@ApiParam("位置")
|
||||||
|
private String position;
|
||||||
|
|
||||||
|
@Column(name="TYPE")
|
||||||
|
@ApiParam("类型")
|
||||||
|
private Integer type;
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsActionLogData;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPrinterConfigure;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 打印机配置
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jessica.chen
|
||||||
|
* @Date : 2019-09-26 12:03:00
|
||||||
|
* @Modify :
|
||||||
|
**/
|
||||||
|
public interface WmsPrinterConfigureRepository extends BaseRepository<WmsPrinterConfigure, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue