📄 userservicerecord.java
字号:
package com.rainbow.mms.common;
import java.sql.Timestamp;
/**
* Rainbow MMS 平台 用户订购记录类
*
* @author Rainbow MMS Group Member —— NeverCorrupt
*/
public class UserServiceRecord {
/**
* 网关名称
*/
private String gatewayName = null;
/**
* 网关编号
*/
private int gatewayId;
/**
* 所在省
*/
private String atProv = null;
/**
* 所在城市
*/
private String atCity = null ;
/**
* 手机号码
*/
private String mobile = null;
/**
* 统一业务编号
*/
private int uniformId ;
/**
* 业务名称
*/
private String uniformName = null;
/**
* 注册方式
*/
private int registerBy;
/**
* 注册时间
*/
private Timestamp registerTime;
/**
* 业务变更操作 0 取消 1 注册
*/
private int actionId;
/**
* 业务变更操作 取消/注册
*/
private String actionName = null;
/**
* 业务变更原因
*/
private int actionReasionId ;
/**
* 业务变更原因名称
*/
private String actionReasionName = null;
/**
* 订购指令
*/
private String orderCmd = null;
/**
* 取消指令
*/
private String disorderCmd = null;
/**
* 设置网关名称
* @param gatewayName
*/
public void setGatewayName(String gatewayName) {
// TODO Auto-generated method stub
this.gatewayName = gatewayName;
}
/**
* 设置网关id
* @param gatewayId
*/
public void setGatewayId(int gatewayId) {
// TODO Auto-generated method stub
this.gatewayId = gatewayId;
}
/**
* 设置所在省
* @param atProv
*/
public void setAtProv(String atProv) {
// TODO Auto-generated method stub
this.atProv = atProv;
}
/**
* 设置所在城市
* @param atCity
*/
public void setAtCity(String atCity) {
// TODO Auto-generated method stub
this.atCity = atCity;
}
/**
* 设置用户号码
* @param mobile
*/
public void setMobile(String mobile) {
// TODO Auto-generated method stub
this.mobile = mobile;
}
/**
* 设置统一业务编号
* @param uniformId
*/
public void setUniformId(int uniformId) {
// TODO Auto-generated method stub
this.uniformId = uniformId;
}
/**
* 设置业务名称
* @param uniformName
*/
public void setUniformName(String uniformName) {
// TODO Auto-generated method stub
this.uniformName = uniformName;
}
/**
* 设置注册方式
* @param registerBy
*/
public void setRegisterBy(int registerBy) {
// TODO Auto-generated method stub
this.registerBy = registerBy;
}
/**
* 设置注册时间
* @param registerTime
*/
public void setRegisterTime(Timestamp registerTime) {
// TODO Auto-generated method stub
this.registerTime = registerTime;
}
/**
* 设置 业务变更操作
* @param actionId
*/
public void setActionId(int actionId) {
// TODO Auto-generated method stub
this.actionId = actionId;
}
/**
* 设置 业务变更操作名称
* @param actionName
*/
public void setActionName(String actionName) {
// TODO Auto-generated method stub
this.actionName = actionName;
}
/**
* 设置 业务变更原因
* @param actionReasionId
*/
public void setActionReasionId(int actionReasionId) {
// TODO Auto-generated method stub
this.actionReasionId = actionReasionId;
}
/**
* 设置 业务变更原因名称
* @param actionReasionName
*/
public void setActionReasionName(String actionReasionName) {
// TODO Auto-generated method stub
this.actionReasionName = actionReasionName;
}
/**
* 设置注册指令
* @param orderCmd
*/
public void setOrderCmd(String orderCmd) {
// TODO Auto-generated method stub
this.orderCmd = orderCmd;
}
/**
* 设置取消指令
* @param disorderCmd
*/
public void setDisorderCmd(String disorderCmd) {
// TODO Auto-generated method stub
this.disorderCmd = disorderCmd;
}
/**
* 取得网关名称
* @return gatewayName
*/
public String getGatewayName() {
// TODO Auto-generated method stub
return this.gatewayName;
}
/**
* 取得网关id
* @return gatewayId
*/
public int getGatewayId() {
// TODO Auto-generated method stub
return this.gatewayId;
}
/**
* 取得 所在省
* @return atProv
*/
public String getAtProv() {
// TODO Auto-generated method stub
return this.atProv;
}
/**
* 取得所在城市
* @return atCity
*/
public String getAtCity() {
// TODO Auto-generated method stub
return this.atCity;
}
/**
* 取得用户号码
* @return mobile
*/
public String getMobile() {
// TODO Auto-generated method stub
return this.mobile;
}
/**
* 取得统一业务编号
* @return uniformId
*/
public int getUniformId() {
// TODO Auto-generated method stub
return this.uniformId;
}
/**
* 取得 业务名称
* @return uniformName
*/
public String getUniformName() {
// TODO Auto-generated method stub
return this.uniformName;
}
/**
* 取得注册方式
* @return registerBy
*/
public int getRegisterBy() {
// TODO Auto-generated method stub
return this.registerBy;
}
/**
* 取得 注册时间
* @return registerTime
*/
public Timestamp getRegisterTime() {
// TODO Auto-generated method stub
return this.registerTime;
}
/**
* 取得 业务变更操作
* @return actionId
*/
public int getActionId() {
// TODO Auto-generated method stub
return this.actionId;
}
/**
* 取得业务变更操作名称
* @return actionName
*/
public String getActionName() {
// TODO Auto-generated method stub
return this.actionName;
}
/**
* 取得业务变更原因
* @return actionReasionId
*/
public int getActionReasionId() {
// TODO Auto-generated method stub
return this.actionReasionId;
}
/**
* 取得业务变更原因名称
* @return actionReasionName
*/
public String getActionReasionName() {
// TODO Auto-generated method stub
return this.actionReasionName;
}
/**
* 取得注册指令
* @return orderCmd
*/
public String getOrderCmd() {
// TODO Auto-generated method stub
return this.orderCmd;
}
/**
* 取得取消指令
* @return disorderCmd
*/
public String getDisorderCmd() {
// TODO Auto-generated method stub
return this.disorderCmd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -