Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
309eea6f5d
@ -0,0 +1,59 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.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="PTL_PRINTER_CONFIGURE")
|
||||
@Api("打印机配置表")
|
||||
public class PtlPrinterConfigure 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,55 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.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-27 14:21
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="PTL_PRINTING_QUEUE")
|
||||
@Api("待打印队列表")
|
||||
public class PtlPrintingQueue extends BaseBean{
|
||||
|
||||
private static final long serialVersionUID = 1111639813072592779L;
|
||||
@Column(name="PRINT_IDENTIFICATION")
|
||||
@ApiParam("打印标识")
|
||||
private String printIdentification;
|
||||
|
||||
@Column(name="PRINT_TYPE")
|
||||
@ApiParam("打印类型")
|
||||
private Integer printType;
|
||||
|
||||
@Column(name="PRINT_NO")
|
||||
@ApiParam("打印机编号")
|
||||
private String printNo;
|
||||
|
||||
@Column(name="PRINT_MUMBER")
|
||||
@ApiParam("打印机张数")
|
||||
private Integer printNumber = 1;
|
||||
|
||||
@Column(name="TEMPLATE_NO")
|
||||
@ApiParam("模板编号")
|
||||
private String templateNo;
|
||||
|
||||
@Column(name="PRINT_STATUS")
|
||||
@ApiParam("打印状态")
|
||||
private Integer printStatus;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlMainTaskDetail;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlPrinterConfigure;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
public interface PtlMainTaskDetailRepository extends BaseRepository<PtlMainTaskDetail, Long> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlPrinterConfigure;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlPrintingQueue;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
public interface PtlPrinterConfigureRepository extends BaseRepository<PtlPrinterConfigure, Long> {
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlActionModule;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlPrintingQueue;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
public interface PtlPrintingQueueRepository extends BaseRepository<PtlPrintingQueue, Long> {
|
||||
|
||||
}
|
Loading…
Reference in New Issue