diff --git a/xm-core/src/main/java/com/xm/share/ctrl/ShareBizInfoController.java b/xm-core/src/main/java/com/xm/share/ctrl/ShareBizInfoController.java
new file mode 100644
index 00000000..816b221c
--- /dev/null
+++ b/xm-core/src/main/java/com/xm/share/ctrl/ShareBizInfoController.java
@@ -0,0 +1,202 @@
+package com.xm.share.ctrl;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import com.xm.share.service.ShareReceInfoService;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.util.StringUtils;
+import org.springframework.web.bind.annotation.ModelAttribute;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.stereotype.Controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiImplicitParam;
+import io.swagger.annotations.ApiImplicitParams;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiResponse;
+import io.swagger.annotations.ApiResponses;
+
+import com.mdp.mybatis.PageUtils;
+import com.mdp.core.entity.Tips;
+import com.mdp.core.err.BizException;
+import com.mdp.core.utils.BaseUtils;
+import com.mdp.core.utils.RequestUtils;
+import com.xm.share.service.ShareBizInfoService;
+import com.xm.share.entity.ShareBizInfo;
+/**
+ * url编制采用rest风格,如对XM.xm_share_biz_info 分享行为记录表的操作有增删改查,对应的url分别为:
+ * 新增: share/shareBizInfo/add
+ * 查询: share/shareBizInfo/list
+ * 模糊查询: share/shareBizInfo/listKey
+ * 修改: share/shareBizInfo/edit
+ * 删除: share/shareBizInfo/del
+ * 批量删除: share/shareBizInfo/batchDel
+ * 组织 com 顶级模块 xm 大模块 share 小模块
+ * 实体 ShareBizInfo 表 XM.xm_share_biz_info 当前主键(包括多主键): share_key;
+ ***/
+@RestController("xm.share.shareBizInfoController")
+@RequestMapping(value="/**/share/shareBizInfo")
+@Api(tags={"分享行为记录表操作接口"})
+public class ShareBizInfoController {
+
+ static Logger logger =LoggerFactory.getLogger(ShareBizInfoController.class);
+
+ @Autowired
+ private ShareBizInfoService shareBizInfoService;
+
+ @Autowired
+ private ShareReceInfoService shareReceInfoService;
+
+
+ @ApiOperation( value = "查询分享行为记录表信息列表",notes=" ")
+ @ApiResponses({
+ @ApiResponse(code = 200,response=ShareBizInfo.class,message = "{tips:{isOk:true/false,msg:'成功/失败原因',tipscode:'错误码'},total:总记录数,data:[数据对象1,数据对象2,...]}")
+ })
+ @RequestMapping(value="/list",method=RequestMethod.GET)
+ public Map listShareBizInfo( @RequestParam Map shareBizInfo){
+ Map m = new HashMap<>();
+ RequestUtils.transformArray(shareBizInfo, "shareKeys");
+ PageUtils.startPage(shareBizInfo);
+ List