16639036659
2023-05-24 c83bd5ccc72512c9935135ff76b7c3f7e81a14b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.project.system.dict.domain;
 
import java.util.List;
 
/**
 *
 */
public class DictDataSonByCompanyIndustryType extends DictData {
    private static final long serialVersionUID = 1L;
 
    private List<DictData> companySubIndustryTypeList;
 
 
    public List<DictData> getCompanySubIndustryTypeList() {
        return companySubIndustryTypeList;
    }
 
    public void setCompanySubIndustryTypeList(List<DictData> companySubIndustryTypeList) {
        this.companySubIndustryTypeList = companySubIndustryTypeList;
    }
}