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

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

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

import java.time.LocalTime;

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

    public LongMapKey(String name){

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy