com.obatis.orm.model.CommonField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-orm Show documentation
Show all versions of obatis-orm Show documentation
obatis-orm, apply database project
The newest version!
package com.obatis.orm.model;
import java.util.ArrayList;
import java.util.List;
/**
* 公共基础实体静态属性,和数据库表字段对应
* @author HuangLongPu
*/
public class CommonField {
/**
* 主键ID,唯一性标识
*/
public static final String FIELD_ID = "id";
/**
* 创建时间
*/
public static final String FIELD_CREATE_TIME = "create_time";
public static void main(String[] args) {
List list = new ArrayList<>();
list.add(1);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy