Your Name
2023-01-30 6bc9483b5bf1d72f6365e23ebcd5703a180bbb90
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 ServiceCodeJunkRequirementConstant {
 
    /**
     * 添加 旧货市场
     */
    public static final String ADD_JUNKREQUIREMENT = "junkRequirement.saveJunkRequirement";
 
 
    /**
     * 修改 旧货市场
     */
    public static final String UPDATE_JUNKREQUIREMENT = "junkRequirement.updateJunkRequirement";
    /**
     * 删除 旧货市场
     */
    public static final String DELETE_JUNKREQUIREMENT = "junkRequirement.deleteJunkRequirement";
 
 
    /**
     * 查询 旧货市场
     */
    public static final String LIST_JUNKREQUIREMENTS = "junkRequirement.listJunkRequirements";
 
 
}