1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.terra.coal.entity;
|
| import java.util.ArrayList;
| import java.util.Arrays;
| import java.util.List;
|
| /**
| * StaticData
| * @author WWW
| */
| public class StaticData {
| public final static Integer MINUS_ONE_THOUSAND = -1000;
|
| public final static Integer NINE_THOUSAND = 9000;
|
| public final static Integer NINE = 9;
|
| public final static List<String> INSERT_EXCLUDE_FIELDS = new ArrayList<>(Arrays.asList("gid", "objectid", "updateuser", "updatetime", "shape_leng", "shape_area", "serialVersionUID", "createName", "updateName"));
|
| public final static List<String> UPDATE_EXCLUDE_FIELDS = new ArrayList<>(Arrays.asList("objectid", "createuser", "createtime", "shape_leng", "shape_area", "serialVersionUID", "createName", "updateName"));
| }
|
|