Administrator
5 days ago 693a198f35e54a7e7e3c0141e52004f38021ce38
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;
 
}