feat(mhzc): 新增按企业查询用户接口入参/出参 VO
This commit is contained in:
parent
f4ac83d552
commit
aea3e8b395
@ -0,0 +1,16 @@
|
|||||||
|
package com.css.txw.mhzc.pojo.vo;
|
||||||
|
|
||||||
|
import com.css.ggzc.framework.common.pojo.PageParam;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Schema(description = "按企业查询用户请求")
|
||||||
|
@Data
|
||||||
|
public class UserQyReqVO extends PageParam {
|
||||||
|
|
||||||
|
@Schema(description = "登录账号(模糊匹配,可空)")
|
||||||
|
private String dlzh;
|
||||||
|
|
||||||
|
@Schema(description = "企业名称(模糊匹配,可空)")
|
||||||
|
private String qymc;
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
package com.css.txw.mhzc.pojo.vo;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Schema(description = "用户-企业匹配结果")
|
||||||
|
@Data
|
||||||
|
public class UserQyVO {
|
||||||
|
|
||||||
|
@Schema(description = "登录账号")
|
||||||
|
private String dlzh;
|
||||||
|
|
||||||
|
@Schema(description = "企业名称")
|
||||||
|
private String qymc;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user