com.litongjava.table.constants.SqlTemplateConstants Maven / Gradle / Ivy
package com.litongjava.table.constants;
/**
* Created by [email protected] on 2023/6/8_17:27
*/
public class SqlTemplateConstants {
public static String SELECT_ALL_FROM = "select * from %s";
public static String SELECT_COLUMNS_FROM = "select %s from %s";
}