123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 用户信息修改
- */
- public class A_B00033 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String uid;//UUID
- /**
- *UUID
- */
- public void setUid(String uid) {
- this.uid=uid;
- }
- /**
- *UUID
- */
- public String getUid() {
- return this.uid;
- }
- String nickName;//昵称
- /**
- *昵称
- */
- public void setNickName(String nickName) {
- this.nickName=nickName;
- }
- /**
- *昵称
- */
- public String getNickName() {
- return this.nickName;
- }
- String username;//用户名
- /**
- *用户名
- */
- public void setUsername(String username) {
- this.username=username;
- }
- /**
- *用户名
- */
- public String getUsername() {
- return this.username;
- }
- String mobileNo;//手机
- /**
- *手机
- */
- public void setMobileNo(String mobileNo) {
- this.mobileNo=mobileNo;
- }
- /**
- *手机
- */
- public String getMobileNo() {
- return this.mobileNo;
- }
- String headProfile;//头像
- /**
- *头像
- */
- public void setHeadProfile(String headProfile) {
- this.headProfile=headProfile;
- }
- /**
- *头像
- */
- public String getHeadProfile() {
- return this.headProfile;
- }
- String company;//公司
- /**
- *公司
- */
- public void setCompany(String company) {
- this.company=company;
- }
- /**
- *公司
- */
- public String getCompany() {
- return this.company;
- }
- String email;//邮箱
- /**
- *邮箱
- */
- public void setEmail(String email) {
- this.email=email;
- }
- /**
- *邮箱
- */
- public String getEmail() {
- return this.email;
- }
- }
|