Administrator
6 days ago 6c340588edca370436c38f0b146e0edadcd32ff9
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;
 
}