|
@@ -25,8 +25,8 @@ public interface ICircleCardInfoService{
|
|
|
|
|
|
@HttpMethod(description = "列表", permissionName = "圈子个人关系管理")
|
|
@HttpMethod(description = "列表", permissionName = "圈子个人关系管理")
|
|
public Page<CircleCardInfo> list(
|
|
public Page<CircleCardInfo> list(
|
|
- @HttpParam(name = "comId", type = HttpParamType.COMMON, description = "圈子id") String comId,
|
|
|
|
- @HttpParam(name = "identityId", type = HttpParamType.COMMON, description = "名片id") String identityId,
|
|
|
|
|
|
+ @HttpParam(name = "circleId", type = HttpParamType.COMMON, description = "圈子id") String circleId,
|
|
|
|
+ @HttpParam(name = "cardId", type = HttpParamType.COMMON, description = "名片id") String cardId,
|
|
@HttpParam(name = "commonId", type = HttpParamType.COMMON, description = "个人id") String commonId,
|
|
@HttpParam(name = "commonId", type = HttpParamType.COMMON, description = "个人id") String commonId,
|
|
@HttpParam(name = "gmtCreate", type = HttpParamType.COMMON, description = "") Date gmtCreate,
|
|
@HttpParam(name = "gmtCreate", type = HttpParamType.COMMON, description = "") Date gmtCreate,
|
|
@HttpParam(name = "gmtUpdate", type = HttpParamType.COMMON, description = "") Date gmtUpdate,
|
|
@HttpParam(name = "gmtUpdate", type = HttpParamType.COMMON, description = "") Date gmtUpdate,
|
|
@@ -36,19 +36,19 @@ public interface ICircleCardInfoService{
|
|
throws ServiceException;
|
|
throws ServiceException;
|
|
|
|
|
|
@HttpMethod(description = "删除", permissionName = "圈子个人关系管理")
|
|
@HttpMethod(description = "删除", permissionName = "圈子个人关系管理")
|
|
- public Boolean delete(@NotNull @HttpParam(name = "comId", type = HttpParamType.COMMON, description = "圈子id")String comId)throws ServiceException;
|
|
|
|
|
|
+ public Boolean delete(@NotNull @HttpParam(name = "circleId", type = HttpParamType.COMMON, description = "圈子id")String circleId)throws ServiceException;
|
|
|
|
|
|
@HttpMethod(description = "修改", permissionName = "圈子个人关系管理")
|
|
@HttpMethod(description = "修改", permissionName = "圈子个人关系管理")
|
|
public Boolean update(@NotNull @HttpParam(name = "circleCardInfo", type = HttpParamType.COMMON, description = "圈子个人关系") CircleCardInfo circleCardInfo,
|
|
public Boolean update(@NotNull @HttpParam(name = "circleCardInfo", type = HttpParamType.COMMON, description = "圈子个人关系") CircleCardInfo circleCardInfo,
|
|
@HttpParam(name = "adminId", type = HttpParamType.ADMIN_ID, description = "adminId") Long adminId)throws ServiceException;
|
|
@HttpParam(name = "adminId", type = HttpParamType.ADMIN_ID, description = "adminId") Long adminId)throws ServiceException;
|
|
|
|
|
|
@HttpMethod(description = "查询", permissionName = "圈子个人关系管理")
|
|
@HttpMethod(description = "查询", permissionName = "圈子个人关系管理")
|
|
- public CircleCardInfo get(@NotNull @HttpParam(name = "comId", type = HttpParamType.COMMON, description = "圈子id")String comId)throws ServiceException;
|
|
|
|
|
|
+ public CircleCardInfo get(@NotNull @HttpParam(name = "circleId", type = HttpParamType.COMMON, description = "圈子id")String circleId)throws ServiceException;
|
|
|
|
|
|
@HttpMethod(description = "导出excl表", permissionName = "圈子个人关系管理")
|
|
@HttpMethod(description = "导出excl表", permissionName = "圈子个人关系管理")
|
|
public String export(
|
|
public String export(
|
|
- @HttpParam(name = "comId", type = HttpParamType.COMMON, description = "圈子id") String comId,
|
|
|
|
- @HttpParam(name = "identityId", type = HttpParamType.COMMON, description = "名片id") String identityId,
|
|
|
|
|
|
+ @HttpParam(name = "circleId", type = HttpParamType.COMMON, description = "圈子id") String circleId,
|
|
|
|
+ @HttpParam(name = "cardId", type = HttpParamType.COMMON, description = "名片id") String cardId,
|
|
@HttpParam(name = "commonId", type = HttpParamType.COMMON, description = "个人id") String commonId,
|
|
@HttpParam(name = "commonId", type = HttpParamType.COMMON, description = "个人id") String commonId,
|
|
@HttpParam(name = "gmtCreate", type = HttpParamType.COMMON, description = "") Date gmtCreate,
|
|
@HttpParam(name = "gmtCreate", type = HttpParamType.COMMON, description = "") Date gmtCreate,
|
|
@HttpParam(name = "gmtUpdate", type = HttpParamType.COMMON, description = "") Date gmtUpdate,
|
|
@HttpParam(name = "gmtUpdate", type = HttpParamType.COMMON, description = "") Date gmtUpdate,
|