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

com.anwen.mongo.mapping.MongoWriter Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.mapping;

import org.bson.conversions.Bson;

import java.util.Map;

/**
 * 将java转为mongodb可用类型
 * @author JiaChaoYang
 * @date 2024/5/1 下午8:36
 */
public interface MongoWriter {

    void write(Object sourceObj, Bson bson);

    void write(Map map, Bson bson);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy