| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 修改用户 */public class A_M00102 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String name;//名称	/**	 *名称	 */	public void setName(String name) {		this.name=name;	}	/**	 *名称	 */	public String getName() {		return this.name;	}	String accountId;//账号	/**	 *账号	 */	public void setAccountId(String accountId) {		this.accountId=accountId;	}	/**	 *账号	 */	public String getAccountId() {		return this.accountId;	}	String orgCode;//组织编码	/**	 *组织编码	 */	public void setOrgCode(String orgCode) {		this.orgCode=orgCode;	}	/**	 *组织编码	 */	public String getOrgCode() {		return this.orgCode;	}	String orgDeptCode;//部门编码	/**	 *部门编码	 */	public void setOrgDeptCode(String orgDeptCode) {		this.orgDeptCode=orgDeptCode;	}	/**	 *部门编码	 */	public String getOrgDeptCode() {		return this.orgDeptCode;	}	String manageUid;//管理的用户ID	/**	 *管理的用户ID	 */	public void setManageUid(String manageUid) {		this.manageUid=manageUid;	}	/**	 *管理的用户ID	 */	public String getManageUid() {		return this.manageUid;	}	String cardNo;//证件号	/**	 *证件号	 */	public void setCardNo(String cardNo) {		this.cardNo=cardNo;	}	/**	 *证件号	 */	public String getCardNo() {		return this.cardNo;	}	String mobileNo;//手机号	/**	 *手机号	 */	public void setMobileNo(String mobileNo) {		this.mobileNo=mobileNo;	}	/**	 *手机号	 */	public String getMobileNo() {		return this.mobileNo;	}}
 |