Administrator
yesterday 03bd93bf72ea24c2134c08bff69a3671202759ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-09-24
 **/
@Data
@ApiModel(value = "TeamListDto", description = "我的团队接收参数类")
public class TeamListDto {
 
    @ApiModelProperty(value = "用户ID, 若查询本账号则不传", example = "1")
    private Long id;
}