📄 pointconsumerecord.java
字号:
package com.jn0801.intergral.record;
/**
* PointConsumeRecord generated by MyEclipse - Hibernate Tools
*/
public class PointConsumeRecord implements java.io.Serializable {
private static final long serialVersionUID = -4351612867787688915L;
private Long consumeid;
private Long userid;
private Long productlogid;
private String phone;
private String consumedate;
private String consumetype;
private Long consumepoint;
private String consumelocation;
private String consumecity;
private Long operatorid;
// Constructors
/** default constructor */
public PointConsumeRecord() {
}
/** full constructor */
public PointConsumeRecord(Long userid, Long productlogid, String phone,
String consumedate, String consumetype, Long consumepoint,
String consumelocation, String consumecity, Long operatorid) {
this.userid = userid;
this.productlogid = productlogid;
this.phone = phone;
this.consumedate = consumedate;
this.consumetype = consumetype;
this.consumepoint = consumepoint;
this.consumelocation = consumelocation;
this.consumecity = consumecity;
this.operatorid = operatorid;
}
/**
* @return the consumecity
*/
public String getConsumecity() {
return consumecity;
}
/**
* @param consumecity
* the consumecity to set
*/
public void setConsumecity(String consumecity) {
this.consumecity = consumecity;
}
/**
* @return the consumedate
*/
public String getConsumedate() {
return consumedate;
}
/**
* @param consumedate
* the consumedate to set
*/
public void setConsumedate(String consumedate) {
this.consumedate = consumedate;
}
/**
* @return the consumeid
*/
public Long getConsumeid() {
return consumeid;
}
/**
* @param consumeid
* the consumeid to set
*/
public void setConsumeid(Long consumeid) {
this.consumeid = consumeid;
}
/**
* @return the consumelocation
*/
public String getConsumelocation() {
return consumelocation;
}
/**
* @param consumelocation
* the consumelocation to set
*/
public void setConsumelocation(String consumelocation) {
this.consumelocation = consumelocation;
}
/**
* @return the consumepoint
*/
public Long getConsumepoint() {
return consumepoint;
}
/**
* @param consumepoint
* the consumepoint to set
*/
public void setConsumepoint(Long consumepoint) {
this.consumepoint = consumepoint;
}
/**
* @return the consumetype
*/
public String getConsumetype() {
return consumetype;
}
/**
* @param consumetype
* the consumetype to set
*/
public void setConsumetype(String consumetype) {
this.consumetype = consumetype;
}
/**
* @return the operatorid
*/
public Long getOperatorid() {
return operatorid;
}
/**
* @param operatorid
* the operatorid to set
*/
public void setOperatorid(Long operatorid) {
this.operatorid = operatorid;
}
/**
* @return the phone
*/
public String getPhone() {
return phone;
}
/**
* @param phone
* the phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return the productlogid
*/
public Long getProductlogid() {
return productlogid;
}
/**
* @param productlogid
* the productlogid to set
*/
public void setProductlogid(Long productlogid) {
this.productlogid = productlogid;
}
/**
* @return the userid
*/
public Long getUserid() {
return userid;
}
/**
* @param userid
* the userid to set
*/
public void setUserid(Long userid) {
this.userid = userid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -