| 123456789101112131415161718192021222324252627282930 |
- package com.zswl.dataservice.model.user;
- import com.zswl.dataservice.model.baseParam.SuperParam;
- import com.zswl.dataservice.model.baseParam.SuperSearchParam;
- import com.zswl.dataservice.type.UserType;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * @author TRX
- * @date 2024/4/8
- */
- @Data
- public class UserSearchParams extends SuperSearchParam {
- /**
- * 登录名
- */
- private String loginName;
- /**
- * 用户名
- */
- private String userName;
- /**
- * 电话号码
- */
- private String phone;
- @Schema(hidden = true)
- private UserType userType;
- }
|