11 changed files with 123 additions and 8 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: esua-epdc |
||||
|
* @description: 获取小程序菜单 |
||||
|
* @author: wgf |
||||
|
* @create: 2022-03-07 9:15 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class AppUserIdMenuDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
@ApiModelProperty(value = "用户ID") |
||||
|
// @NotBlank(message="用户ID不能为空")
|
||||
|
private String userId; |
||||
|
|
||||
|
@ApiModelProperty(value = "部门ID") |
||||
|
@NotBlank(message="部门ID不能为空") |
||||
|
private String deptId; |
||||
|
} |
||||
Loading…
Reference in new issue