双重预防项目-国泰新华二开定制版
Your Name
2022-11-11 b47b351ba838b9ca0c70fae7cc3a64d4026e7356
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;
    }
}