| 12345678910111213141516171819202122232425262728293031 |
- package com.xjrsoft.module.student.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- @Data
- public class EnrollmentStatisticsInfoKeyValue {
- /**
- *
- */
- @ApiModelProperty("")
- private String key;
- /**
- *
- */
- @ApiModelProperty(value = "后端处理业务使用字段",hidden = true)
- private String kkey;
- /**
- *
- */
- @ApiModelProperty("")
- private Long value;
- public EnrollmentStatisticsInfoKeyValue() {
- }
- public EnrollmentStatisticsInfoKeyValue(String key, Long value) {
- this.key = key;
- this.value = value;
- }
- }
|