zrj
2024-11-04 ac7fcc1738a02153478eb68e4946f4e5215ba8df
1
2
3
4
5
6
7
8
9
10
11
12
package org.springblade.modules.yw.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springblade.modules.yw.entity.FirmInfo;
 
@Data
public class FirmInfoVO extends FirmInfo {
 
    @ApiModelProperty(value = "行业名称")
    private String categoryName;
}