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