You've already forked FrameTour-BE
补充添加接口描述
This commit is contained in:
@ -22,6 +22,11 @@ public interface OrderMapper {
|
||||
// int deleteById(Long id);
|
||||
int update(OrderAddOrUpdateReq order);
|
||||
|
||||
/**
|
||||
* 添加订单明细
|
||||
* @param orderItems
|
||||
* @return
|
||||
*/
|
||||
int addOrderItems(List<OrderItemEntity> orderItems);
|
||||
|
||||
}
|
||||
|
@ -16,6 +16,11 @@ public interface RoleMapper {
|
||||
int add(AddOrUpdateRoleReqVO addOrUpdateRoleReqVO);
|
||||
int update(AddOrUpdateRoleReqVO addOrUpdateRoleReqVO);
|
||||
|
||||
/**
|
||||
* 查询角色的菜单权限
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
List<MenuNode> getMenuById(@Param("id")String id);
|
||||
|
||||
int updateStatus(@Param("id")String id);
|
||||
|
@ -23,6 +23,11 @@ public interface ScenicMapper {
|
||||
int update(ScenicAddOrUpdateReq scenic);
|
||||
int updateStatus(Long id);
|
||||
|
||||
/**
|
||||
* 添加景区配置
|
||||
* @param scenicConfig
|
||||
* @return
|
||||
*/
|
||||
int addConfig(ScenicConfigEntity scenicConfig);
|
||||
/**
|
||||
* 修改景区配置
|
||||
|
Reference in New Issue
Block a user