| 123456789101112131415161718192021222324252627282930313233343536 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- public class DictDto {
- @ApiModelProperty("名称")
- private String name;
- @ApiModelProperty("变量值")
- private String value;
- @ApiModelProperty("备注信息")
- private String note;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- }
|