Helius
2020-12-17 f76c9c5beb39916771402de95f05be18f39a9db6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.matrix.core.constance;
 
/**
 * 系统信息码
 * 
 * @author JIANGYOUYAO
 * @email 935090232@qq.com
 * @date 2017年11月28日
 */
public interface SystemMessageCode {
 
    /** =======系统信息码=========== **/
 
    /** 添加成功 */
    String ADD_SUCCES = "1000_0000";
    /** 修改成功 */
    String UPDATE_SUCCES = "1000_0001";
    /** 成功删除{0}条数据 */
    String DELETE_SUCCES = "1000_0002";
 
     
}