Administrator
2 days ago 726de53a23bd9b6b24ccc3ae6c3b1a6b24b67379
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.ai.req.productCategory;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiProductCategoryHotDto", description = "参数")
public class ApiProductCategoryHotDto {
 
    @ApiModelProperty(value = "公司ID", example = "1")
    private String companyId;
}