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

com.easy.query.api.proxy.key.StringMapKey Maven / Gradle / Ivy

There is a newer version: 2.0.106
Show newest version
package com.easy.query.api.proxy.key;

/**
 * create time 2024/3/2 19:52
 * 文件说明
 *
 * @author xuejiaming
 */
public class StringMapKey implements MapKey {
    private final String name;

    public StringMapKey(String name){

        this.name = name;
    }
    @Override
    public String getName() {
        return name;
    }

    @Override
    public Class getPropType() {
        return String.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy