提交修改 下一步进行机构用户登录改造

This commit is contained in:
LEED
2025-05-28 17:17:20 +08:00
parent 9fccd0bb43
commit 3bac43403b
7 changed files with 127 additions and 7 deletions

View File

@@ -7,6 +7,10 @@ package com.xinda.common.core.domain.model;
*/
public class LoginBody
{
/**
* 机构ID
*/
private Long deptId;
/**
* 用户名
*/
@@ -42,6 +46,14 @@ public class LoginBody
*/
private String smsCode;
public Long getDeptId() {
return deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
public String getSmsCode() {
return smsCode;
}