java110
2023-08-24 e46e9f6438737c72dd1f3aa022d8d3f6d112d311
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.java110.utils.constant;
 
/**
 * 账户常量类
 * Created by wuxw on 2017/5/20.
 */
public class ServiceCodeAccountConstant {
 
    /**
     * 添加 账户
     */
    public static final String ADD_ACCOUNT = "account.saveAccount";
 
 
    /**
     * 修改 账户
     */
    public static final String UPDATE_ACCOUNT = "account.updateAccount";
    /**
     * 删除 账户
     */
    public static final String DELETE_ACCOUNT = "account.deleteAccount";
 
 
    /**
     * 查询 账户
     */
    public static final String LIST_ACCOUNTS = "account.listAccounts";
 
 
}