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";
|
|
|
}
|