Administrator
4 days ago f895ed85c8c9134d9a81ba8695588a6131aba935
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;
 
}