UpateNameParam.java 439 Bytes
Newer Older
1 2
package pwc.taxtech.atms.dto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5
public class UpateNameParam {
6
    @JsonProperty("ID")
7
    private String id;
8 9 10
    private String name;


11 12
    public String getId() {
        return id;
13 14
    }

15 16
    public void setId(String id) {
        this.id = id;
17 18 19 20 21 22 23 24 25 26
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}