xiaoyong931011
2022-05-05 1efd30c955ac0252eac10d3714a7f45711701dee
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";
 
     
}