linwe
2024-11-06 6077ce233ec0ecb454f34a58f68e3ff958ef0dc1
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;
}