From 7a4f9541331bef779a506b38a27ed5c3373c0bec Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期四, 15 五月 2025 13:53:22 +0800 Subject: [PATCH] 开发二级等保功能及心跳消息队列修改 --- ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TOrderAppeal.java | 24 ++++++++++++++++++++++-- 1 files changed, 22 insertions(+), 2 deletions(-) diff --git a/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TOrderAppeal.java b/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TOrderAppeal.java index 0408457..ec0c2c5 100644 --- a/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TOrderAppeal.java +++ b/ruoyi-api/ruoyi-api-order/src/main/java/com/ruoyi/order/api/model/TOrderAppeal.java @@ -28,12 +28,18 @@ private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键") - @TableId(value = "id", type = IdType.AUTO) + @TableId(value = "id", type = IdType.NONE) private Long id; - + @ApiModelProperty(value = "uid") + @TableField(exist = false) + private String uid; @ApiModelProperty(value = "订单类型(1=充电订单,2=购物订单,3=兑换订单,4=会员订单)") @TableField("order_type") private Integer orderType; + + @ApiModelProperty(value = "订单编号") + @TableField("code") + private String code; @ApiModelProperty(value = "订单id") @TableField("order_id") @@ -47,6 +53,10 @@ @TableField("reason") private String reason; + @ApiModelProperty(value = "联系方式") + @TableField("phone") + private String phone; + @ApiModelProperty(value = "申诉内容") @TableField("content") private String content; @@ -55,10 +65,20 @@ @TableField("img_url") private String imgUrl; + @ApiModelProperty(value = "申诉状态 (1=待处理,2=已处理)") + @TableField("status") + private Integer status; + @ApiModelProperty(value = "申诉反馈") @TableField("feedback") private String feedback; + @ApiModelProperty(value = "查看按钮权限 ") + @TableField(exist = false) + private Boolean authInfo = true; + @TableField(exist = false) + @ApiModelProperty(value = "处理按钮权限 ") + private Boolean authHandle = true; @ApiModelProperty(value = "反馈人id") @TableField("feedback_user_id") private Integer feedbackUserId; -- Gitblit v1.7.1