From 5f9e42d921ba2b191199e61cf070da20de39758c Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期二, 10 十二月 2024 14:15:36 +0800 Subject: [PATCH] 合并代码 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java index 6e5404f..e037621 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java @@ -32,7 +32,7 @@ @ApiModelProperty(value = "主键") @TableId("id") - private Long id; + private Integer id; @ApiModelProperty(value = "用户id") @TableField("app_user_id") @@ -40,7 +40,7 @@ @ApiModelProperty(value = "技师id") @TableField("technician_id") - private Long technicianId; + private Integer technicianId; @ApiModelProperty(value = "预约时间") @TableField("subscribe_time") @@ -77,7 +77,7 @@ private String idStr; - public void setId(Long id) { + public void setId(Integer id) { this.id = id; this.idStr = String.valueOf(id); } -- Gitblit v1.7.1