You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RuoYi-Vue/newstock-system/src/main/java/com/ruoyi/newstocksystem/domain/NewStockIndustry.java

79 lines
1.4 KiB

package com.ruoyi.newstocksystem.domain;
import com.ruoyi.common.core.domain.BaseEntity;
/**
*
*
* @author lxy
* @date 2026-01-18
*/
public class NewStockIndustry extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 行业ID */
private Integer industryId;
/** 行业级别1-3 */
private Integer industryLevel;
/** 行业代码 */
private String industryCode;
/** 行业名称 */
private String industryName;
/** 父行业代码 */
private String parentCode;
public void setIndustryId(Integer industryId)
{
this.industryId = industryId;
}
public Integer getIndustryId()
{
return industryId;
}
public void setIndustryLevel(Integer industryLevel)
{
this.industryLevel = industryLevel;
}
public Integer getIndustryLevel()
{
return industryLevel;
}
public void setIndustryCode(String industryCode)
{
this.industryCode = industryCode;
}
public String getIndustryCode()
{
return industryCode;
}
public void setIndustryName(String industryName)
{
this.industryName = industryName;
}
public String getIndustryName()
{
return industryName;
}
public void setParentCode(String parentCode)
{
this.parentCode = parentCode;
}
public String getParentCode()
{
return parentCode;
}
}