给租户增加有效期
This commit is contained in:
@@ -22,8 +22,6 @@ public class UserEx extends User{
|
||||
|
||||
private String userType;
|
||||
|
||||
private String userNumLimit;
|
||||
|
||||
public String getOrgAbr() {
|
||||
return orgAbr;
|
||||
}
|
||||
@@ -79,12 +77,4 @@ public class UserEx extends User{
|
||||
public void setUserType(String userType) {
|
||||
this.userType = userType;
|
||||
}
|
||||
|
||||
public String getUserNumLimit() {
|
||||
return userNumLimit;
|
||||
}
|
||||
|
||||
public void setUserNumLimit(String userNumLimit) {
|
||||
this.userNumLimit = userNumLimit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,9 +10,13 @@ public interface TenantMapperEx {
|
||||
|
||||
List<TenantEx> selectByConditionTenant(
|
||||
@Param("loginName") String loginName,
|
||||
@Param("type") String type,
|
||||
@Param("enabled") String enabled,
|
||||
@Param("offset") Integer offset,
|
||||
@Param("rows") Integer rows);
|
||||
|
||||
Long countsByTenant(
|
||||
@Param("loginName") String loginName);
|
||||
@Param("loginName") String loginName,
|
||||
@Param("type") String type,
|
||||
@Param("enabled") String enabled);
|
||||
}
|
||||
Reference in New Issue
Block a user