You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
424 B
15 lines
424 B
package com.sky.constant;
|
|
|
|
/**
|
|
* 公共字段自动填充相关常量
|
|
*/
|
|
public class AutoFillConstant {
|
|
/**
|
|
* 实体类中的方法名称
|
|
*/
|
|
public static final String SET_CREATE_TIME = "setCreateTime";
|
|
public static final String SET_UPDATE_TIME = "setUpdateTime";
|
|
public static final String SET_CREATE_USER = "setCreateUser";
|
|
public static final String SET_UPDATE_USER = "setUpdateUser";
|
|
}
|