feat(printer): 添加打印机指引图片管理功能

- 新增 PrinterGuideEntity 实体类定义数据库表结构
- 创建 PrinterGuideMapper 数据访问接口及实现方法
- 在 AppPrinterController 中添加移动端查询已启用指引图片接口
- 在 PrinterController 中添加 PC 端指引图片管理完整 CRUD 接口
- 扩展打印机服务层集成指引图片业务逻辑
- 调整订单支付完成后购买后逻辑触发机制
- 修改用户照片列表到打印机缓存时间从 60 秒延长至 24 小时
This commit is contained in:
2026-02-13 10:20:31 +08:00
parent 0cfa871e86
commit daa1436e55
6 changed files with 142 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
package com.ycwl.basic.model.pc.printer.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName("printer_guide")
public class PrinterGuideEntity {
@TableId(type = IdType.AUTO)
private Integer id;
private Integer printerId;
private String imageUrl;
private Integer sortOrder;
private Integer enabled;
private Date createTime;
private Date updateTime;
}