All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.blankcat.dto.message.ArkObjKV Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package cn.blankcat.dto.message;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
// ArkObj Ark 对象
public class ArkObjKV {

    private String key;
    private String value;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy