package com.product.integration.config;
|
|
/**
|
* Copyright © 6c
|
*
|
* @Date: 2021-03-19 08:45
|
* @Author: 6c
|
* @Description:
|
*/
|
public class CmnConst {
|
private CmnConst() {}
|
|
// 分页常量定义
|
public static final String PAGE_COUNT = "cpage"; // 页数
|
public static final String PAGE_SIZE = "pagesize"; // 每页条数
|
|
// 表
|
public static final String TABLE_TEMP ="temp_table";
|
|
// 字段-通用
|
public static final String FIELD_ID = "id";
|
public static final String FIELD_UUID = "uuid";
|
public static final String FIELD_CREATED_BY = "created_by";
|
public static final String FIELD_CREATED_UTC_DATETIME = "created_utc_datetime";
|
public static final String FIELD_UPDATED_BY = "updated_by";
|
public static final String FIELD_UPDATED_UTC_DATETIME = "updated_utc_datetime";
|
}
|