SysOrganizationsService.java 1.51 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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
package com.lyms.cm.service.sys;

import java.io.Serializable;

import com.lyms.cm.entity.sys.SysOrganizations;
import com.lyms.exception.SystemException;
import com.lyms.web.service.BaseService;

/**
* <p>
* 服务类
* </p>
*
* @author maliang
* @since 2017-03-08
*/
public interface SysOrganizationsService extends BaseService<SysOrganizations> {

/**
* <li>@Description:逻辑删除,ifDel = 1 为删除,否则为没有删除
* <li>@param id 删除主键id
* <li>@return 大于0修改成功,否则为失败
*/
public Integer deleteLogicById(Serializable id);

/**
* <li>@Description:添加机构信息
* <li>@param organizations
* <li>@return
* <li>@throws SystemException
* <li>创建人:maliang
* <li>创建时间:2017年3月8日
* <li>修改人:
* <li>修改时间:
*/
public boolean addOrg(SysOrganizations organizations) throws SystemException;

/**
* 修改机构信息
* <li>@Description:TODO(方法描述)
* <li>@param organizations
* <li>@return
* <li>@throws SystemException
* <li>创建人:maliang
* <li>创建时间:2017年3月8日
* <li>修改人:
* <li>修改时间:
*/
public boolean updateOrg(SysOrganizations organizations) throws SystemException;

/**
* <li>@Description:根据ID删除
* <li>@param id
* <li>@return
* <li>@throws SystemException
* <li>创建人:maliang
* <li>创建时间:2017年3月8日
* <li>修改人:
* <li>修改时间:
*/
public boolean deleteOrganById(String id) throws SystemException;

}