123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 系统登录
- */
- public class A_HM0001 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String logintype;//登录类型
- /**
- *登录类型
- */
- public void setLogintype(String logintype) {
- this.logintype=logintype;
- }
- /**
- *登录类型
- */
- public String getLogintype() {
- return this.logintype;
- }
- String verifygraph;//验证码
- /**
- *验证码
- */
- public void setVerifygraph(String verifygraph) {
- this.verifygraph=verifygraph;
- }
- /**
- *验证码
- */
- public String getVerifygraph() {
- return this.verifygraph;
- }
- String password;//用户密码
- /**
- *用户密码
- */
- public void setPassword(String password) {
- this.password=password;
- }
- /**
- *用户密码
- */
- public String getPassword() {
- return this.password;
- }
- }
|