190 lines
4.4 KiB
Java
190 lines
4.4 KiB
Java
package com.gzzn.omms.msgexchangeapi.entity;
|
|
import java.io.Serializable;
|
|
import javax.persistence.*;
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
* The persistent class for the COUTMSGS database table.
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name="COUTMSGS")
|
|
public class Cmoutmsg implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Id
|
|
@GeneratedValue(strategy=GenerationType.IDENTITY)
|
|
@Column(name="COUTMSGS_ID")
|
|
private int coutmsgsId;
|
|
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
@Column(name="COUTMSGS_ACK_DATE_RECV")
|
|
private Date coutmsgsAckDateRecv;
|
|
|
|
@Column(name="COUTMSGS_ACK_REQD")
|
|
private int coutmsgsAckReqd;
|
|
|
|
@Column(name="COUTMSGS_ACK_RESEND_TIMES")
|
|
private int coutmsgsAckResendTimes;
|
|
|
|
@Lob
|
|
@Column(name="COUTMSGS_CLOB_MSG")
|
|
private String coutmsgsClobMsg;
|
|
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
@Column(name="COUTMSGS_DATE_INSERTED")
|
|
private Date coutmsgsDateInserted;
|
|
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
@Column(name="COUTMSGS_DATE_SENT")
|
|
private Date coutmsgsDateSent;
|
|
|
|
@Column(name="COUTMSGS_ENCRYPT")
|
|
private int coutmsgsEncrypt;
|
|
|
|
@Column(name="COUTMSGS_ERROR")
|
|
private int coutmsgsError;
|
|
|
|
@Column(name="COUTMSGS_FINAL_GROUP_IND")
|
|
private int coutmsgsFinalGroupInd;
|
|
|
|
@Column(name="COUTMSGS_GROUP_ID")
|
|
private int coutmsgsGroupId;
|
|
|
|
@Column(name="COUTMSGS_GROUP_ORDER")
|
|
private int coutmsgsGroupOrder;
|
|
|
|
@Column(name="COUTMSGS_NO_MESSAGES")
|
|
private int coutmsgsNoMessages;
|
|
|
|
@Column(name="COUTMSGS_TRUEFALS_GROUP")
|
|
private int coutmsgsTruefalsGroup;
|
|
|
|
@Column(name="ROUTINGID")
|
|
private String routingid;
|
|
|
|
public Cmoutmsg() {
|
|
}
|
|
|
|
public int getCoutmsgsId() {
|
|
return this.coutmsgsId;
|
|
}
|
|
|
|
public void setCoutmsgsId(int coutmsgsId) {
|
|
this.coutmsgsId = coutmsgsId;
|
|
}
|
|
|
|
public Date getCoutmsgsAckDateRecv() {
|
|
return this.coutmsgsAckDateRecv;
|
|
}
|
|
|
|
public void setCoutmsgsAckDateRecv(Date coutmsgsAckDateRecv) {
|
|
this.coutmsgsAckDateRecv = coutmsgsAckDateRecv;
|
|
}
|
|
|
|
public int getCoutmsgsAckReqd() {
|
|
return this.coutmsgsAckReqd;
|
|
}
|
|
|
|
public void setCoutmsgsAckReqd(int coutmsgsAckReqd) {
|
|
this.coutmsgsAckReqd = coutmsgsAckReqd;
|
|
}
|
|
|
|
public int getCoutmsgsAckResendTimes() {
|
|
return this.coutmsgsAckResendTimes;
|
|
}
|
|
|
|
public void setCoutmsgsAckResendTimes(int coutmsgsAckResendTimes) {
|
|
this.coutmsgsAckResendTimes = coutmsgsAckResendTimes;
|
|
}
|
|
|
|
public String getCoutmsgsClobMsg() {
|
|
return this.coutmsgsClobMsg;
|
|
}
|
|
|
|
public void setCoutmsgsClobMsg(String coutmsgsClobMsg) {
|
|
this.coutmsgsClobMsg = coutmsgsClobMsg;
|
|
}
|
|
|
|
public Date getCoutmsgsDateInserted() {
|
|
return this.coutmsgsDateInserted;
|
|
}
|
|
|
|
public void setCoutmsgsDateInserted(Date coutmsgsDateInserted) {
|
|
this.coutmsgsDateInserted = coutmsgsDateInserted;
|
|
}
|
|
|
|
public Date getCoutmsgsDateSent() {
|
|
return this.coutmsgsDateSent;
|
|
}
|
|
|
|
public void setCoutmsgsDateSent(Date coutmsgsDateSent) {
|
|
this.coutmsgsDateSent = coutmsgsDateSent;
|
|
}
|
|
|
|
public int getCoutmsgsEncrypt() {
|
|
return this.coutmsgsEncrypt;
|
|
}
|
|
|
|
public void setCoutmsgsEncrypt(int coutmsgsEncrypt) {
|
|
this.coutmsgsEncrypt = coutmsgsEncrypt;
|
|
}
|
|
|
|
public int getCoutmsgsError() {
|
|
return this.coutmsgsError;
|
|
}
|
|
|
|
public void setCoutmsgsError(int coutmsgsError) {
|
|
this.coutmsgsError = coutmsgsError;
|
|
}
|
|
|
|
public int getCoutmsgsFinalGroupInd() {
|
|
return this.coutmsgsFinalGroupInd;
|
|
}
|
|
|
|
public void setCoutmsgsFinalGroupInd(int coutmsgsFinalGroupInd) {
|
|
this.coutmsgsFinalGroupInd = coutmsgsFinalGroupInd;
|
|
}
|
|
|
|
public int getCoutmsgsGroupId() {
|
|
return this.coutmsgsGroupId;
|
|
}
|
|
|
|
public void setCoutmsgsGroupId(int coutmsgsGroupId) {
|
|
this.coutmsgsGroupId = coutmsgsGroupId;
|
|
}
|
|
|
|
public int getCoutmsgsGroupOrder() {
|
|
return this.coutmsgsGroupOrder;
|
|
}
|
|
|
|
public void setCoutmsgsGroupOrder(int coutmsgsGroupOrder) {
|
|
this.coutmsgsGroupOrder = coutmsgsGroupOrder;
|
|
}
|
|
|
|
public int getCoutmsgsNoMessages() {
|
|
return this.coutmsgsNoMessages;
|
|
}
|
|
|
|
public void setCoutmsgsNoMessages(int coutmsgsNoMessages) {
|
|
this.coutmsgsNoMessages = coutmsgsNoMessages;
|
|
}
|
|
|
|
public int getCoutmsgsTruefalsGroup() {
|
|
return this.coutmsgsTruefalsGroup;
|
|
}
|
|
|
|
public void setCoutmsgsTruefalsGroup(int coutmsgsTruefalsGroup) {
|
|
this.coutmsgsTruefalsGroup = coutmsgsTruefalsGroup;
|
|
}
|
|
|
|
public String getRoutingid() {
|
|
return this.routingid;
|
|
}
|
|
|
|
public void setRoutingid(String routingid) {
|
|
this.routingid = routingid;
|
|
}
|
|
|
|
} |