CacheDto.java 879 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto;

3
import com.fasterxml.jackson.annotation.JsonProperty;
eddie.woo's avatar
eddie.woo committed
4

5 6
public class CacheDto {
    @JsonProperty("ID")
7
    private String id;
eddie.woo's avatar
eddie.woo committed
8 9 10 11 12 13 14

    private String cacheKey;

    private String lastModifyTime;

    private String cacheTime;

15 16
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
17 18
    }

19
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
20
        this.id = id;
eddie.woo's avatar
eddie.woo committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    }

    public String getCacheKey() {
        return cacheKey;
    }

    public void setCacheKey(String cacheKey) {
        this.cacheKey = cacheKey;
    }

    public String getLastModifyTime() {
        return lastModifyTime;
    }

    public void setLastModifyTime(String lastModifyTime) {
        this.lastModifyTime = lastModifyTime;
    }

    public String getCacheTime() {
        return cacheTime;
    }

    public void setCacheTime(String cacheTime) {
        this.cacheTime = cacheTime;
    }

}