DictionaryManager.java
1.05 KB
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
32
33
34
35
36
37
38
package com.diligrp.website.manager;
import java.util.List;
import com.diligrp.website.web.interfaces.domain.output.DataDictionaryResp;
import com.diligrp.website.web.interfaces.domain.output.DiliServiceResp;
/**
* <B>Description</B> 数据字典调用接口manager
* <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
* 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
* <B>Company</B> 地利集团
* @createTime 2014年5月28日 下午4:29:35
* @author mengxf
*/
public interface DictionaryManager {
/**
*
* this method is 根据数据字典code查询所属字典列表
* @param code
* @return
* @createTime 2014年5月28日 下午4:31:08
* @author mengxf
*/
public DataDictionaryResp getDictionaryByCode(String code);
/**
*
* this method is 获取地利订单服务
* @return
* @createTime 2014年6月6日 下午3:05:50
* @author mengxf
*/
public List<DiliServiceResp> getDiliServiceOrderAll();
}