package com.yuanchu.mom.pojo.dto; import lombok.Data; @Data public class ProductDto2 { private Integer id; /** * 项目名称 */ private String name; /** * 单位 */ private String unit; /** * 标准值 */ private String required; /** * 内控值 */ private String internal; }