|
|
@ -5,6 +5,7 @@ import cn.estsh.i3plus.pojo.base.common.Pager;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.Organize;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.Organize;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.Position;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.Position;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.SessionUser;
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.SessionUser;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
@ -19,9 +20,9 @@ import java.util.List;
|
|
|
|
public interface IOrganizeService {
|
|
|
|
public interface IOrganizeService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 修改数据
|
|
|
|
|
|
|
|
* @param organize
|
|
|
|
* @param organize
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiOperation(value = "更新组织",notes = "传入持久化组织对象,进行更新")
|
|
|
|
void updateOrganize(Organize organize);
|
|
|
|
void updateOrganize(Organize organize);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -30,6 +31,7 @@ public interface IOrganizeService {
|
|
|
|
* @param status 组织状态
|
|
|
|
* @param status 组织状态
|
|
|
|
* @param user 当前会话用户
|
|
|
|
* @param user 当前会话用户
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiOperation(value = "修改组织状态",notes = "")
|
|
|
|
void updateOrganizeStatus(String id, int status, SessionUser user);
|
|
|
|
void updateOrganizeStatus(String id, int status, SessionUser user);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|