DictionaryDTO.java 252 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package vion.dto; import lombok.Getter; import lombok.Setter; @Getter @Setter public class DictionaryDTO extends BaseDTO { private Long id; private String type; private Integer key; private String value; private String remark; }