📄 accountlog2entity.java
字号:
package com.ufmobile.business.account.entity;
import java.io.Serializable;
import java.math.BigDecimal;
import com.ufmobile.business.account.bo.Account.BussinessType;
@SuppressWarnings("serial")
@javax.persistence.Entity
@javax.persistence.Table(name = "TB_BUSINESS_ACCOUNTLOG2")
@javax.persistence.SequenceGenerator(name="TB_BUSINESS_ACCOUNTLOG2_SEQ", sequenceName="S_BUSINESS_ACCOUNTLOG2", allocationSize=1)
//服务日志,记录服务和账户本身日志
public class Accountlog2Entity implements Serializable {
private Long id;
/**
* Get the primary key.
*
* @return The primary key.
* @javax.persistence.Id(generate = javax.persistence.GeneratorType.AUTO)
*/
@javax.persistence.Id
@javax.persistence.GeneratedValue(strategy=javax.persistence.GenerationType.SEQUENCE, generator="TB_BUSINESS_ACCOUNTLOG2_SEQ")
@javax.persistence.Column(name = "ID")
public Long getId() {
return id;
}
/**
* Set the primary key.
*
* @param id The primary key.
*/
public void setId(Long id) {
this.id = id;
}
/** Regular field. */
private java.lang.String accountid;
/**
* Get the accountid.
*
* @return The accountid.
*/
@javax.persistence.Column(name = "ACCOUNTID")
public java.lang.String getAccountid() {
return accountid;
}
/**
* Set the accountid.
*
* @param accountid The accountid.
*/
public void setAccountid(java.lang.String accountid) {
this.accountid = accountid;
}
/** Regular field. */
private java.math.BigDecimal accin;
/**
* Get the accin.
*
* @return The accin.
*/
@javax.persistence.Column(name = "ACCIN")
public java.math.BigDecimal getAccin() {
if (accin==null) return new BigDecimal(0);
return accin;
}
/**
* Set the accin.
*
* @param accin The accin.
*/
public void setAccin(java.math.BigDecimal accin) {
this.accin = accin;
}
/** Regular field. */
private java.math.BigDecimal accout;
/**
* Get the accout.
*
* @return The accout.
*/
@javax.persistence.Column(name = "ACCOUT")
public java.math.BigDecimal getAccout() {
if (accout==null) return new BigDecimal(0);
return accout;
}
/**
* Set the accout.
*
* @param accout The accout.
*/
public void setAccout(java.math.BigDecimal accout) {
this.accout = accout;
}
/** Regular field. */
private java.math.BigDecimal back;
/**
* Get the back.
*
* @return The back.
*/
@javax.persistence.Column(name = "BACK")
public java.math.BigDecimal getBack() {
if (back==null) return new BigDecimal(0);
return back;
}
/**
* Set the back.
*
* @param back The back.
*/
public void setBack(java.math.BigDecimal back) {
this.back = back;
}
/** Regular field. */
private java.math.BigDecimal accintotal;
/**
* Get the accin.
*
* @return The accin.
*/
@javax.persistence.Column(name = "ACCINTOTAL")
public java.math.BigDecimal getAccintotal() {
if (accintotal==null) return new BigDecimal(0);
return accintotal;
}
/**
* Set the accin.
*
* @param accin The accin.
*/
public void setAccintotal(java.math.BigDecimal accin) {
this.accintotal = accin;
}
/** Regular field. */
private java.math.BigDecimal accouttotal;
/**
* Get the accout.
*
* @return The accout.
*/
@javax.persistence.Column(name = "ACCOUTTOTAL")
public java.math.BigDecimal getAccouttotal() {
if (accouttotal==null) return new BigDecimal(0);
return accouttotal;
}
/**
* Set the accout.
*
* @param accout The accout.
*/
public void setAccouttotal(java.math.BigDecimal accout) {
this.accouttotal = accout;
}
/** Regular field. */
private java.math.BigDecimal backtotal;
/**
* Get the back.
*
* @return The back.
*/
@javax.persistence.Column(name = "ACCBACKTOTAL")
public java.math.BigDecimal getBacktotal() {
if (backtotal==null) return new BigDecimal(0);
return backtotal;
}
/**
* Set the back.
*
* @param back The back.
*/
public void setBacktotal(java.math.BigDecimal back) {
this.backtotal = back;
}
/** Regular field. */
private BussinessType businesstype;
/**
* Get the businesstype.
*
* @return The businesstype.
*/
@javax.persistence.Column(name = "BUSINESSTYPE")
public BussinessType getBusinesstype() {
return businesstype;
}
/**
* Set the businesstype.
*
* @param businesstype The businesstype.
*/
public void setBusinesstype(BussinessType businesstype) {
this.businesstype = businesstype;
}
// /** Regular field. */
// private Long operatid;
//
// /**
// * Get the accoperator.
// *
// * @return The accoperator.
// */
// @javax.persistence.Column(name = "OPERATORID")
// public Long getOperatorID() {
// return operatid;
// }
//
// /**
// * Set the accoperator.
// *
// * @param accoperator The accoperator.
// */
// public void setOperatorID(Long operatorid) {
// this.operatid = operatorid;
// }
/** Regular field. */
private java.lang.String operator;
/**
* Get the accoperator.
*
* @return The accoperator.
*/
@javax.persistence.Column(name = "ACCOPERATOR")
public java.lang.String getAccoperator() {
return operator;
}
/**
* Set the accoperator.
*
* @param accoperator The accoperator.
*/
public void setAccoperator(java.lang.String accoperator) {
this.operator = accoperator;
}
/** Regular field. */
private java.util.Date operatetime;
/**
* Get the operatetime.
*
* @return The operatetime.
*/
@javax.persistence.Column(name = "OPERATETIME")
public java.util.Date getOperatetime() {
return operatetime;
}
/**
* Set the operatetime.
*
* @param operatetime The operatetime.
*/
public void setOperatetime(java.util.Date operatetime) {
this.operatetime = operatetime;
}
/** Regular field. */
private java.lang.Long accobject;
/**
* Get the accobject.
*
* @return The accobject.
*/
@javax.persistence.Column(name = "ACCOBJECT")
public java.lang.Long getAccobject() {
return accobject;
}
/**
* Set the accobject.
*
* @param accobject The accobject.
*/
public void setAccobject(java.lang.Long accobject) {
this.accobject = accobject;
}
/** Regular field. */
private java.math.BigDecimal objtype;
/**
* Get the objtype.
*
* @return The objtype.
*/
@javax.persistence.Column(name = "OBJTYPE")
public java.math.BigDecimal getObjtype() {
return objtype;
}
/**
* Set the objtype.
*
* @param objtype The objtype.
*/
public void setObjtype(java.math.BigDecimal objtype) {
this.objtype = objtype;
}
/** Regular field. */
private java.lang.String meno;
/**
* Get the meno.
*
* @return The meno.
*/
@javax.persistence.Column(name = "MENO")
public java.lang.String getMeno() {
return meno;
}
/**
* Set the meno.
*
* @param meno The meno.
*/
public void setMeno(java.lang.String meno) {
this.meno = meno;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -