123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- package com.ym.mec.collectfee.entity;
- import com.thoughtworks.xstream.annotations.XStreamAlias;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- /**
- * 对应数据库表(mec_user):
- */
- @XStreamAlias("student")
- public class MecUser {
- /** */
- private Integer userId;
-
- /** */
- private String userName;
-
- /** */
- private String mobile;
-
- /** */
- private Integer branchId;
-
- /** */
- private Integer city;
-
- /** */
- private String realName;
-
- /** */
- private Integer sex;
-
- /** */
- private Integer ethnic;
-
- /** */
- private String cardNo;
-
- /** */
- private String birthDay;
-
- /** */
- private String company;
-
- /** */
- @XStreamAlias("class")
- private String clazz;
-
- /** */
- private String pName;
-
- /** */
- private String pCompany;
-
- /** */
- private java.math.BigDecimal balance;
-
- /** */
- private Integer active;
-
- /** */
- private String wxAccount;
-
- /** */
- private String aliAccount;
-
- public void setUserId(Integer userId){
- this.userId = userId;
- }
-
- public Integer getUserId(){
- return this.userId;
- }
-
- public void setUserName(String userName){
- this.userName = userName;
- }
-
- public String getUserName(){
- return this.userName;
- }
-
- public void setMobile(String mobile){
- this.mobile = mobile;
- }
-
- public String getMobile(){
- return this.mobile;
- }
-
- public void setBranchId(Integer branchId){
- this.branchId = branchId;
- }
-
- public Integer getBranchId(){
- return this.branchId;
- }
-
- public void setCity(Integer city){
- this.city = city;
- }
-
- public Integer getCity(){
- return this.city;
- }
-
- public void setRealName(String realName){
- this.realName = realName;
- }
-
- public String getRealName(){
- return this.realName;
- }
-
- public void setSex(Integer sex){
- this.sex = sex;
- }
-
- public Integer getSex(){
- return this.sex;
- }
-
- public void setEthnic(Integer ethnic){
- this.ethnic = ethnic;
- }
-
- public Integer getEthnic(){
- return this.ethnic;
- }
-
- public void setCardNo(String cardNo){
- this.cardNo = cardNo;
- }
-
- public String getCardNo(){
- return this.cardNo;
- }
-
- public void setBirthDay(String birthDay){
- this.birthDay = birthDay;
- }
-
- public String getBirthDay(){
- return this.birthDay;
- }
-
- public void setCompany(String company){
- this.company = company;
- }
-
- public String getCompany(){
- return this.company;
- }
-
- public void setClazz(String clazz){
- this.clazz = clazz;
- }
-
- public String getClazz(){
- return this.clazz;
- }
-
- public void setPName(String pName){
- this.pName = pName;
- }
-
- public String getPName(){
- return this.pName;
- }
-
- public void setPCompany(String pCompany){
- this.pCompany = pCompany;
- }
-
- public String getPCompany(){
- return this.pCompany;
- }
-
- public void setBalance(java.math.BigDecimal balance){
- this.balance = balance;
- }
-
- public java.math.BigDecimal getBalance(){
- return this.balance;
- }
-
- public void setActive(Integer active){
- this.active = active;
- }
-
- public Integer getActive(){
- return this.active;
- }
-
- public void setWxAccount(String wxAccount){
- this.wxAccount = wxAccount;
- }
-
- public String getWxAccount(){
- return this.wxAccount;
- }
-
- public void setAliAccount(String aliAccount){
- this.aliAccount = aliAccount;
- }
-
- public String getAliAccount(){
- return this.aliAccount;
- }
-
- @Override
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
- }
|