¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.system.model; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | /** |
| | | * ç»å½è¡¨å |
| | | * |
| | | * @Author scott |
| | | * @since 2019-01-18 |
| | | */ |
| | | @ApiModel(value="ç»å½å¯¹è±¡", description="ç»å½å¯¹è±¡") |
| | | public class SysLoginModel { |
| | | @ApiModelProperty(value = "å·¥å·") |
| | | private String workNo; |
| | | @ApiModelProperty(value = "è´¦å·") |
| | | private String username; |
| | | @ApiModelProperty(value = "å¯ç ") |
| | | private String password; |
| | | @ApiModelProperty(value = "ç»å½æ¹å¼") |
| | | private String loginType; |
| | | @ApiModelProperty(value = "éªè¯ç ") |
| | | private String captcha; |
| | | |
| | | public String getLoginType() { |
| | | return loginType; |
| | | } |
| | | |
| | | public void setLoginType(String loginType) { |
| | | this.loginType = loginType; |
| | | } |
| | | |
| | | @ApiModelProperty(value = "éªè¯ç key") |
| | | private String checkKey; |
| | | |
| | | public String getUsername() { |
| | | return username; |
| | | } |
| | | |
| | | public void setUsername(String username) { |
| | | this.username = username; |
| | | } |
| | | |
| | | public String getPassword() { |
| | | return password; |
| | | } |
| | | |
| | | public void setPassword(String password) { |
| | | this.password = password; |
| | | } |
| | | |
| | | public String getCaptcha() { |
| | | return captcha; |
| | | } |
| | | |
| | | public void setCaptcha(String captcha) { |
| | | this.captcha = captcha; |
| | | } |
| | | |
| | | public String getCheckKey() { |
| | | return checkKey; |
| | | } |
| | | |
| | | public void setCheckKey(String checkKey) { |
| | | this.checkKey = checkKey; |
| | | } |
| | | |
| | | public String getWorkNo() { |
| | | return workNo; |
| | | } |
| | | |
| | | public void setWorkNo(String workNo) { |
| | | this.workNo = workNo; |
| | | } |
| | | } |