From b27efc697f2f81e0d0f247a2708e58af52a5df9b Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期四, 23 十月 2025 15:14:33 +0800
Subject: [PATCH] bug修改,后台新增修改用户积分
---
cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/SalesDetailVO.java | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/SalesDetailVO.java b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/SalesDetailVO.java
index ecfc282..4c416e8 100644
--- a/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/SalesDetailVO.java
+++ b/cloud-server-management/src/main/java/com/dsh/guns/modular/system/model/SalesDetailVO.java
@@ -1,5 +1,6 @@
package com.dsh.guns.modular.system.model;
+import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
@@ -10,14 +11,14 @@
public class SalesDetailVO {
// 基础信息
private Long id; // 主键ID[8]
- private String huiMinName; // 惠民卡名称
- private Integer huiMinType; // 惠民卡类型(1:年度卡,2:年内卡)
+ private String huiMinName; // 玩湃惠民卡名称
+ private Integer huiMinType; // 玩湃惠民卡类型(1:年度卡,2:年内卡)
private BigDecimal salesMoney; // 售卖金额(精确计算)
// 关联信息
private Integer operatorId;
private String operatorName; // 所属运营商
- private Integer storeId;
+ private String storeIds;
private String storeName; // 可用门店
private Integer appUserId; // 购买用户ID
private String userName; // 购买用户
@@ -25,8 +26,10 @@
// 时间信息
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date paymentTime; // 购买时间[1,8](@ref)
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date endTime; // 有效期
// 使用信息
--
Gitblit v1.7.1