tbcjdxscoretotal.java
来自「移动彩信管理平台」· Java 代码 · 共 65 行
JAVA
65 行
package com.my7g.zj.mobile.mms.mapping;
import java.util.Date;
/**
* TbCjdxScoreTotal generated by MyEclipse Persistence Tools
*/
public class TbCjdxScoreTotal implements java.io.Serializable {
// Fields
private Integer id;
private Long mobile;
private Integer score;
private Date updateTime;
// Constructors
/** default constructor */
public TbCjdxScoreTotal() {
}
/** full constructor */
public TbCjdxScoreTotal(Long mobile, Integer score, Date updateTime) {
this.mobile = mobile;
this.score = score;
this.updateTime = updateTime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Long getMobile() {
return this.mobile;
}
public void setMobile(Long mobile) {
this.mobile = mobile;
}
public Integer getScore() {
return this.score;
}
public void setScore(Integer score) {
this.score = score;
}
public Date getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?