超市退款
This commit is contained in:
@ -0,0 +1,95 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.controller.admin.storerefund;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import org.springframework.validation.annotation.Validated;
|
||||||
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
|
import io.swagger.v3.oas.annotations.Parameter;
|
||||||
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
|
||||||
|
import javax.validation.constraints.*;
|
||||||
|
import javax.validation.*;
|
||||||
|
import javax.servlet.http.*;
|
||||||
|
import java.util.*;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
||||||
|
import static cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum.*;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.member.controller.admin.storerefund.vo.*;
|
||||||
|
import cn.iocoder.yudao.module.member.dal.dataobject.storerefund.StoreRefundDO;
|
||||||
|
import cn.iocoder.yudao.module.member.service.storerefund.StoreRefundService;
|
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 超市订单退款审核")
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/member/store-refund")
|
||||||
|
@Validated
|
||||||
|
public class StoreRefundController {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private StoreRefundService storeRefundService;
|
||||||
|
|
||||||
|
@PostMapping("/create")
|
||||||
|
@Operation(summary = "创建超市订单退款审核")
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:create')")
|
||||||
|
public CommonResult<Long> createStoreRefund(@Valid @RequestBody StoreRefundSaveReqVO createReqVO) {
|
||||||
|
return success(storeRefundService.createStoreRefund(createReqVO));
|
||||||
|
}
|
||||||
|
|
||||||
|
@PutMapping("/update")
|
||||||
|
@Operation(summary = "更新超市订单退款审核")
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:update')")
|
||||||
|
public CommonResult<Boolean> updateStoreRefund(@Valid @RequestBody StoreRefundSaveReqVO updateReqVO) {
|
||||||
|
storeRefundService.updateStoreRefund(updateReqVO);
|
||||||
|
return success(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@DeleteMapping("/delete")
|
||||||
|
@Operation(summary = "删除超市订单退款审核")
|
||||||
|
@Parameter(name = "id", description = "编号", required = true)
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:delete')")
|
||||||
|
public CommonResult<Boolean> deleteStoreRefund(@RequestParam("id") Long id) {
|
||||||
|
storeRefundService.deleteStoreRefund(id);
|
||||||
|
return success(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping("/get")
|
||||||
|
@Operation(summary = "获得超市订单退款审核")
|
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:query')")
|
||||||
|
public CommonResult<StoreRefundRespVO> getStoreRefund(@RequestParam("id") Long id) {
|
||||||
|
StoreRefundDO storeRefund = storeRefundService.getStoreRefund(id);
|
||||||
|
return success(BeanUtils.toBean(storeRefund, StoreRefundRespVO.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping("/page")
|
||||||
|
@Operation(summary = "获得超市订单退款审核分页")
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:query')")
|
||||||
|
public CommonResult<PageResult<StoreRefundRespVO>> getStoreRefundPage(@Valid StoreRefundPageReqVO pageReqVO) {
|
||||||
|
PageResult<StoreRefundDO> pageResult = storeRefundService.getStoreRefundPage(pageReqVO);
|
||||||
|
return success(BeanUtils.toBean(pageResult, StoreRefundRespVO.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping("/export-excel")
|
||||||
|
@Operation(summary = "导出超市订单退款审核 Excel")
|
||||||
|
@PreAuthorize("@ss.hasPermission('member:store-refund:export')")
|
||||||
|
@OperateLog(type = EXPORT)
|
||||||
|
public void exportStoreRefundExcel(@Valid StoreRefundPageReqVO pageReqVO,
|
||||||
|
HttpServletResponse response) throws IOException {
|
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE);
|
||||||
|
List<StoreRefundDO> list = storeRefundService.getStoreRefundPage(pageReqVO).getList();
|
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "超市订单退款审核.xls", "数据", StoreRefundRespVO.class,
|
||||||
|
BeanUtils.toBean(list, StoreRefundRespVO.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.controller.admin.storerefund.vo;
|
||||||
|
|
||||||
|
import lombok.*;
|
||||||
|
import java.util.*;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 超市订单退款审核分页 Request VO")
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@ToString(callSuper = true)
|
||||||
|
public class StoreRefundPageReqVO extends PageParam {
|
||||||
|
|
||||||
|
@Schema(description = "门店", example = "11925")
|
||||||
|
private Long carteenId;
|
||||||
|
|
||||||
|
@Schema(description = "关联订单", example = "31383")
|
||||||
|
private Long orderId;
|
||||||
|
|
||||||
|
@Schema(description = "退款金额")
|
||||||
|
private BigDecimal money;
|
||||||
|
|
||||||
|
@Schema(description = "订单金额")
|
||||||
|
private BigDecimal orderMoney;
|
||||||
|
|
||||||
|
@Schema(description = "审核状态", example = "1")
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
@Schema(description = "用户", example = "4563")
|
||||||
|
private Long userId;
|
||||||
|
|
||||||
|
@Schema(description = "用户名称", example = "王五")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@Schema(description = "手机")
|
||||||
|
private String mobile;
|
||||||
|
|
||||||
|
@Schema(description = "创建时间")
|
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
|
private LocalDateTime[] createTime;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,57 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.controller.admin.storerefund.vo;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.*;
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.*;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import com.alibaba.excel.annotation.*;
|
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 超市订单退款审核 Response VO")
|
||||||
|
@Data
|
||||||
|
@ExcelIgnoreUnannotated
|
||||||
|
public class StoreRefundRespVO {
|
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "1659")
|
||||||
|
@ExcelProperty("主键")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Schema(description = "门店", example = "11925")
|
||||||
|
@ExcelProperty("门店")
|
||||||
|
private Long carteenId;
|
||||||
|
|
||||||
|
@Schema(description = "关联订单", example = "31383")
|
||||||
|
@ExcelProperty("关联订单")
|
||||||
|
private Long orderId;
|
||||||
|
|
||||||
|
@Schema(description = "退款金额")
|
||||||
|
@ExcelProperty("退款金额")
|
||||||
|
private BigDecimal money;
|
||||||
|
|
||||||
|
@Schema(description = "订单金额")
|
||||||
|
@ExcelProperty("订单金额")
|
||||||
|
private BigDecimal orderMoney;
|
||||||
|
|
||||||
|
@Schema(description = "审核状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
|
@ExcelProperty("审核状态")
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
@Schema(description = "用户", example = "4563")
|
||||||
|
@ExcelProperty("用户")
|
||||||
|
private Long userId;
|
||||||
|
|
||||||
|
@Schema(description = "用户名称", example = "王五")
|
||||||
|
@ExcelProperty("用户名称")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@Schema(description = "手机")
|
||||||
|
@ExcelProperty("手机")
|
||||||
|
private String mobile;
|
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
|
@ExcelProperty("创建时间")
|
||||||
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.controller.admin.storerefund.vo;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.*;
|
||||||
|
import java.util.*;
|
||||||
|
import javax.validation.constraints.*;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 超市订单退款审核新增/修改 Request VO")
|
||||||
|
@Data
|
||||||
|
public class StoreRefundSaveReqVO {
|
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "1659")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Schema(description = "门店", example = "11925")
|
||||||
|
private Long carteenId;
|
||||||
|
|
||||||
|
@Schema(description = "关联订单", example = "31383")
|
||||||
|
private Long orderId;
|
||||||
|
|
||||||
|
@Schema(description = "退款金额")
|
||||||
|
private BigDecimal money;
|
||||||
|
|
||||||
|
@Schema(description = "订单金额")
|
||||||
|
private BigDecimal orderMoney;
|
||||||
|
|
||||||
|
@Schema(description = "审核状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
|
@NotEmpty(message = "审核状态不能为空")
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
@Schema(description = "用户", example = "4563")
|
||||||
|
private Long userId;
|
||||||
|
|
||||||
|
@Schema(description = "用户名称", example = "王五")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
@Schema(description = "手机")
|
||||||
|
private String mobile;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.dal.dataobject.storerefund;
|
||||||
|
|
||||||
|
import lombok.*;
|
||||||
|
import java.util.*;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import com.baomidou.mybatisplus.annotation.*;
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 超市订单退款审核 DO
|
||||||
|
*
|
||||||
|
* @author 管理员
|
||||||
|
*/
|
||||||
|
@TableName("member_store_refund")
|
||||||
|
@KeySequence("member_store_refund_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@ToString(callSuper = true)
|
||||||
|
@Builder
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
public class StoreRefundDO extends BaseDO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
@TableId
|
||||||
|
private Long id;
|
||||||
|
/**
|
||||||
|
* 门店
|
||||||
|
*/
|
||||||
|
private Long carteenId;
|
||||||
|
/**
|
||||||
|
* 关联订单
|
||||||
|
*/
|
||||||
|
private Long orderId;
|
||||||
|
/**
|
||||||
|
* 退款金额
|
||||||
|
*/
|
||||||
|
private BigDecimal money;
|
||||||
|
/**
|
||||||
|
* 订单金额
|
||||||
|
*/
|
||||||
|
private BigDecimal orderMoney;
|
||||||
|
/**
|
||||||
|
* 审核状态
|
||||||
|
*/
|
||||||
|
private String status;
|
||||||
|
/**
|
||||||
|
* 用户
|
||||||
|
*/
|
||||||
|
private Long userId;
|
||||||
|
/**
|
||||||
|
* 用户名称
|
||||||
|
*/
|
||||||
|
private String userName;
|
||||||
|
/**
|
||||||
|
* 手机
|
||||||
|
*/
|
||||||
|
private String mobile;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.dal.mysql.storerefund;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
|
import cn.iocoder.yudao.module.member.dal.dataobject.storerefund.StoreRefundDO;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import cn.iocoder.yudao.module.member.controller.admin.storerefund.vo.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 超市订单退款审核 Mapper
|
||||||
|
*
|
||||||
|
* @author 管理员
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface StoreRefundMapper extends BaseMapperX<StoreRefundDO> {
|
||||||
|
|
||||||
|
default PageResult<StoreRefundDO> selectPage(StoreRefundPageReqVO reqVO) {
|
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<StoreRefundDO>()
|
||||||
|
.eqIfPresent(StoreRefundDO::getCarteenId, reqVO.getCarteenId())
|
||||||
|
.eqIfPresent(StoreRefundDO::getOrderId, reqVO.getOrderId())
|
||||||
|
.eqIfPresent(StoreRefundDO::getMoney, reqVO.getMoney())
|
||||||
|
.eqIfPresent(StoreRefundDO::getOrderMoney, reqVO.getOrderMoney())
|
||||||
|
.eqIfPresent(StoreRefundDO::getStatus, reqVO.getStatus())
|
||||||
|
.eqIfPresent(StoreRefundDO::getUserId, reqVO.getUserId())
|
||||||
|
.likeIfPresent(StoreRefundDO::getUserName, reqVO.getUserName())
|
||||||
|
.eqIfPresent(StoreRefundDO::getMobile, reqVO.getMobile())
|
||||||
|
.betweenIfPresent(StoreRefundDO::getCreateTime, reqVO.getCreateTime())
|
||||||
|
.orderByDesc(StoreRefundDO::getId));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,55 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.service.storerefund;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
import javax.validation.*;
|
||||||
|
import cn.iocoder.yudao.module.member.controller.admin.storerefund.vo.*;
|
||||||
|
import cn.iocoder.yudao.module.member.dal.dataobject.storerefund.StoreRefundDO;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 超市订单退款审核 Service 接口
|
||||||
|
*
|
||||||
|
* @author 管理员
|
||||||
|
*/
|
||||||
|
public interface StoreRefundService {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建超市订单退款审核
|
||||||
|
*
|
||||||
|
* @param createReqVO 创建信息
|
||||||
|
* @return 编号
|
||||||
|
*/
|
||||||
|
Long createStoreRefund(@Valid StoreRefundSaveReqVO createReqVO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新超市订单退款审核
|
||||||
|
*
|
||||||
|
* @param updateReqVO 更新信息
|
||||||
|
*/
|
||||||
|
void updateStoreRefund(@Valid StoreRefundSaveReqVO updateReqVO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除超市订单退款审核
|
||||||
|
*
|
||||||
|
* @param id 编号
|
||||||
|
*/
|
||||||
|
void deleteStoreRefund(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获得超市订单退款审核
|
||||||
|
*
|
||||||
|
* @param id 编号
|
||||||
|
* @return 超市订单退款审核
|
||||||
|
*/
|
||||||
|
StoreRefundDO getStoreRefund(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获得超市订单退款审核分页
|
||||||
|
*
|
||||||
|
* @param pageReqVO 分页查询
|
||||||
|
* @return 超市订单退款审核分页
|
||||||
|
*/
|
||||||
|
PageResult<StoreRefundDO> getStoreRefundPage(StoreRefundPageReqVO pageReqVO);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,74 @@
|
|||||||
|
package cn.iocoder.yudao.module.member.service.storerefund;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import org.springframework.validation.annotation.Validated;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
import cn.iocoder.yudao.module.member.controller.admin.storerefund.vo.*;
|
||||||
|
import cn.iocoder.yudao.module.member.dal.dataobject.storerefund.StoreRefundDO;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.member.dal.mysql.storerefund.StoreRefundMapper;
|
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||||
|
import static cn.iocoder.yudao.module.member.enums.ErrorCodeConstants.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 超市订单退款审核 Service 实现类
|
||||||
|
*
|
||||||
|
* @author 管理员
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Validated
|
||||||
|
public class StoreRefundServiceImpl implements StoreRefundService {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private StoreRefundMapper storeRefundMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Long createStoreRefund(StoreRefundSaveReqVO createReqVO) {
|
||||||
|
// 插入
|
||||||
|
StoreRefundDO storeRefund = BeanUtils.toBean(createReqVO, StoreRefundDO.class);
|
||||||
|
storeRefundMapper.insert(storeRefund);
|
||||||
|
// 返回
|
||||||
|
return storeRefund.getId();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateStoreRefund(StoreRefundSaveReqVO updateReqVO) {
|
||||||
|
// 校验存在
|
||||||
|
validateStoreRefundExists(updateReqVO.getId());
|
||||||
|
// 更新
|
||||||
|
StoreRefundDO updateObj = BeanUtils.toBean(updateReqVO, StoreRefundDO.class);
|
||||||
|
storeRefundMapper.updateById(updateObj);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void deleteStoreRefund(Long id) {
|
||||||
|
// 校验存在
|
||||||
|
validateStoreRefundExists(id);
|
||||||
|
// 删除
|
||||||
|
storeRefundMapper.deleteById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void validateStoreRefundExists(Long id) {
|
||||||
|
if (storeRefundMapper.selectById(id) == null) {
|
||||||
|
throw exception(STORE_REFUND_NOT_EXISTS);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public StoreRefundDO getStoreRefund(Long id) {
|
||||||
|
return storeRefundMapper.selectById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PageResult<StoreRefundDO> getStoreRefundPage(StoreRefundPageReqVO pageReqVO) {
|
||||||
|
return storeRefundMapper.selectPage(pageReqVO);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user