1
2
3
4
5
6
7
8
9
10
package com.moral.constant;
 
/**
 * 通用常量信息
 */
public class Constants {
    public static String DELETE = "1";
 
    public static String NOT_DELETE = "0";
}