package com.gkhy.safePlatform.safeCheck.model.dto.resp; import java.io.Serializable; /** * 巡检指标单位-类型 */ public class SafeCheckQuotaTypeRespDTO implements Serializable { private int id; //指标类型 private String type; //指标单位 private String unit; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } }