| | |
| | | package com.zy.asrs.framework.domain; |
| | | |
| | | /** |
| | | * Created by vincent on 2021/4/13 |
| | | */ |
| | | public class KeyValueVo { |
| | | |
| | | private String name; |
| | | |
| | | private Long value; |
| | | |
| | | public KeyValueVo() { |
| | | } |
| | | |
| | | public KeyValueVo(String name, Long value) { |
| | | this.name = name; |
| | | this.value = value; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public Long getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setValue(Long value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | } |
| | | package com.zy.asrs.framework.domain;
|
| | |
|
| | | /**
|
| | | * Created by vincent on 2021/4/13
|
| | | */
|
| | | public class KeyValueVo {
|
| | |
|
| | | private String name;
|
| | |
|
| | | private Long value;
|
| | |
|
| | | public KeyValueVo() {
|
| | | }
|
| | |
|
| | | public KeyValueVo(String name, Long value) {
|
| | | this.name = name;
|
| | | this.value = value;
|
| | | }
|
| | |
|
| | | public String getName() {
|
| | | return name;
|
| | | }
|
| | |
|
| | | public void setName(String name) {
|
| | | this.name = name;
|
| | | }
|
| | |
|
| | | public Long getValue() {
|
| | | return value;
|
| | | }
|
| | |
|
| | | public void setValue(Long value) {
|
| | | this.value = value;
|
| | | }
|
| | |
|
| | | }
|