whyclxw
5 天以前 bae185d2ff22c2537adc298cac905c9f5394d3c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.whyc.dto;
 
import lombok.Data;
import lombok.ToString;
 
@ToString
@Data
public class NameValueIntDto {
 
    private String name;
    private Integer value;
 
    public NameValueIntDto() {
    }
 
    public NameValueIntDto(String name, Integer value) {
        this.name = name;
        this.value = value;
    }
}