| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.template.model.vo;
- import lombok.Data;
- /**
- * @Author: binguo
- * @Date: 2024/1/18 星期四 18:01
- * @Description: com.template.model.vo
- * @Version: 1.0
- */
- @Data
- public class QrcodeImageVo {
- /**
- * 身份码的时候 该数据为用户ID
- * 访客码的时候 该数据为访客数据ID
- * 数据ID
- */
- private Integer id;
- /**
- * 码类型
- * 身份码:1
- * 访客码:2
- */
- private Integer type;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 时间
- */
- private String timestamp;
- }
|