|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
package cn.estsh.i3plus.core.apiservice.controller.busi;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.core.api.iservice.busi.IOrganizeService;
|
|
|
|
|
import cn.estsh.i3plus.pojo.model.busi.ResultBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.Organize;
|
|
|
|
|
import cn.estsh.i3plus.pojo.platform.bean.SysUser;
|
|
|
|
|
import cn.estsh.impp.framework.boot.util.ResultBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
@ -27,7 +27,13 @@ public class OrganizeController {
|
|
|
|
|
|
|
|
|
|
public static final Logger LOGGER = LoggerFactory.getLogger(OrganizeController.class);
|
|
|
|
|
|
|
|
|
|
public static final SysUser USER = new SysUser(10086L, "中国移动");
|
|
|
|
|
public static SysUser USER;
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
USER =new SysUser();
|
|
|
|
|
USER.setEmployeeNameRdd("中国移动");
|
|
|
|
|
USER.setId(10086L);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|