接口文档
parent
8e86b27ad3
commit
886faede31
@ -1,12 +1,20 @@
|
||||
package com.glxp.api.req.auth;
|
||||
|
||||
import com.glxp.api.util.page.ListPageRequest;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@ApiModel("部门用户请求类")
|
||||
public class FilterDeptUserReqeust extends ListPageRequest {
|
||||
|
||||
@ApiModelProperty(value = "部门id")
|
||||
private Long deptId;
|
||||
|
||||
@ApiModelProperty(value = "用户id")
|
||||
private Long userId;
|
||||
|
||||
@ApiModelProperty(value = "键")
|
||||
private String key;
|
||||
}
|
||||
|
@ -1,18 +1,31 @@
|
||||
package com.glxp.api.res.auth;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@ApiModel("部门用户响应类")
|
||||
public class DeptUserResponse {
|
||||
|
||||
@ApiModelProperty(value = "部门id")
|
||||
private Long deptId;
|
||||
|
||||
@ApiModelProperty(value = "用户id")
|
||||
private Long userId;
|
||||
|
||||
@ApiModelProperty(value = "用户名")
|
||||
private String userName;
|
||||
|
||||
@ApiModelProperty(value = "员工名称")
|
||||
private String employeeName;
|
||||
|
||||
@ApiModelProperty(value = "部门名称")
|
||||
private String deptName;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
}
|
||||
|
@ -1,15 +1,23 @@
|
||||
package com.glxp.api.res.auth;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@ApiModel("登入响应类")
|
||||
public class LoginResponse {
|
||||
|
||||
@ApiModelProperty(value = "id")
|
||||
private String id;
|
||||
private String token;
|
||||
|
||||
@ApiModelProperty(value = "令牌")
|
||||
private String token;
|
||||
|
||||
@ApiModelProperty(value = "部门")
|
||||
private String dept;
|
||||
|
||||
@ApiModelProperty(value = "部门名称")
|
||||
private String deptName;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue