|
@@ -0,0 +1,27 @@
|
|
|
+package com.hfln.portal.common.dto.data.parameter;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class ParameterDTO {
|
|
|
+
|
|
|
+ @JsonProperty("param_id")
|
|
|
+ private Long parameterId;
|
|
|
+
|
|
|
+ @JsonProperty("param_code")
|
|
|
+ private String paramCode;
|
|
|
+
|
|
|
+ @JsonProperty("param_name")
|
|
|
+ private String paramName;
|
|
|
+
|
|
|
+ @JsonProperty("param_value")
|
|
|
+ private String paramValue;
|
|
|
+
|
|
|
+ @JsonProperty("param_desc")
|
|
|
+ private String paramDesc;
|
|
|
+
|
|
|
+ private String remark;
|
|
|
+}
|
|
|
+
|
|
|
+
|