12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 修改个人信息
- */
- public class A_B00002 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String headProfile;//头像
- /**
- *头像
- */
- public void setHeadProfile(String headProfile) {
- this.headProfile=headProfile;
- }
- /**
- *头像
- */
- public String getHeadProfile() {
- return this.headProfile;
- }
- String nickName;//昵称
- /**
- *昵称
- */
- public void setNickName(String nickName) {
- this.nickName=nickName;
- }
- /**
- *昵称
- */
- public String getNickName() {
- return this.nickName;
- }
- String personWords;//个性签名
- /**
- *个性签名
- */
- public void setPersonWords(String personWords) {
- this.personWords=personWords;
- }
- /**
- *个性签名
- */
- public String getPersonWords() {
- return this.personWords;
- }
- String linkTel;//联系电话
- /**
- *联系电话
- */
- public void setLinkTel(String linkTel) {
- this.linkTel=linkTel;
- }
- /**
- *联系电话
- */
- public String getLinkTel() {
- return this.linkTel;
- }
- }
|