Administrator
4 days ago 5d4e2aecba57a34e299b7adde8fbd06ea93cd396
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.yinhe.req;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "YHAgentDto", description = "参数")
public class YHAgentDto {
 
    @ApiModelProperty(value = "分类", example = "1")
    private String agentCategoryId;
 
}