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

com.zys.mybatis.converter.impl.LocalDateDVImpl Maven / Gradle / Ivy

There is a newer version: 0.2.7
Show newest version
package com.zys.mybatis.converter.impl;

import com.zys.mybatis.converter.DefaultValue;

import java.time.LocalDate;

/**
 * LocalDateTime类型默认设置
 * @author zys
 * @version 1.0
 * @date 2021/3/26 9:56
 */
public class LocalDateDVImpl implements DefaultValue {

    @Override
    public LocalDate setDefault(Class tClass, String value) {
        return LocalDate.now();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy