IP地址取消来函增加取消来函信息添加,展示
This commit is contained in:
@@ -300,6 +300,23 @@ public class ServiceDictInfoService extends BaseService{
|
||||
public List<ServiceDictInfo> findAllLableDict() {
|
||||
return serviceDictInfoDao.findAllItemDictByItemType(Constants.ITEM_TYPE_LABEL,null);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* 取消审核的时候增加取消来函
|
||||
* @param cancelRequestId
|
||||
* @param indexTable
|
||||
* @param id
|
||||
*/
|
||||
@Transactional(readOnly=false,rollbackFor=RuntimeException.class)
|
||||
public void auditCancleRequestInfo(Integer cancelRequestId, String indexTable, String id) {
|
||||
serviceDictInfoDao.auditCancleRequestInfo(cancelRequestId, indexTable, id);
|
||||
}
|
||||
public Integer requestCancleInfoNumber(String indexTable, Long id) {
|
||||
Integer cancleRequestId = serviceDictInfoDao.requestCancleInfoNumber( indexTable, id);
|
||||
return cancleRequestId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user