| 1234567891011121314151617181920212223242526272829303132333435363738 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 子账户操作 */public class A_C00019 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String id;//账户id	/**	 *账户id	 */	public void setId(String id) {		this.id=id;	}	/**	 *账户id	 */	public String getId() {		return this.id;	}	String type;//操作类型(0-重置密码 1-失效 )	/**	 *操作类型(0-重置密码 1-失效 )	 */	public void setType(String type) {		this.type=type;	}	/**	 *操作类型(0-重置密码 1-失效 )	 */	public String getType() {		return this.type;	}}
 |