6c
2025-12-01 1d3cf3f5a8d075d5003f40d51bea12473a58930c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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";
}