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

com.github.wzc789376152.springboot.config.shardingsphere.ShardingPropertics Maven / Gradle / Ivy

The newest version!
package com.github.wzc789376152.springboot.config.shardingsphere;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.format.annotation.DateTimeFormat;

import java.util.Date;

@Configuration
@ConfigurationProperties(prefix = "wzc.shardingsphere")
@Data
public class ShardingPropertics {
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date minDate;
    private Boolean initTable = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy