DaoConst.java 1.07 KB
Newer Older
yanzg's avatar
yanzg committed
1
package com.yanzuoguang.dao;
yanzg's avatar
yanzg committed
2 3 4 5 6

/**
 * created by yanzu on 2017/5/30.
 */
public class DaoConst {
yanzg's avatar
yanzg committed
7 8 9 10
    public static final int OperatorTypeCreate = 0;
    public static final int OperatorTypeUpdate = 1;
    public static final int OperatorTypeRemove = 2;
    public static final int OperatorTypeLoad = 3;
yanzg's avatar
yanzg committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

    /**
     * 创建
     */
    public static final String Create = "create";
    /**
     * 修改
     */
    public static final String Update = "update";
    /**
     * 删除
     */
    public static final String Remove = "remove";
    /**
     * 加载
     */
    public static final String Load = "load";
    /**
     * 查询
     */
    public static final String Query = "query";

    /**
     * GROUP增加数据的SQL语句
     */
    public static final String GroupAdd = "GroupAdd";

    /**
     * GROUP查询数据的SQL语句
     */
    public static final String GroupQuery = "GroupQuery";
yanzg's avatar
yanzg committed
42 43 44 45 46 47 48 49 50

    /**
     * 驼峰式命名
     */
    public static final int RowNameTypeCamelCase = 0;
    /**
     * 原字段
     */
    public static final int RowNameTypeNoChange = 1;
yanzg's avatar
yanzg committed
51
}