package com.ruoyi.basic.dto;
|
|
import lombok.Data;
|
|
/**
|
* 标准库两级树查询的扁平行结果(行业 + 标准)
|
*/
|
@Data
|
public class StandardLibraryTreeRowDto {
|
|
private Integer industryId;
|
|
private String industryName;
|
|
private Integer industrySort;
|
|
private Integer standardId;
|
|
private Integer standardMethodId;
|
|
private String standardCode;
|
|
private String standardName;
|
|
private String standardNameEn;
|
|
private String standardLabel;
|
|
private Integer standardSort;
|
}
|