Pu Zhibing
2024-12-10 af495911ed2b8bbc65ca45e70e74681cad2e648b
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java
@@ -40,7 +40,7 @@
    @ApiModelProperty(value = "技师id")
    @TableField("technician_id")
    private Long technicianId;
    private Integer technicianId;
    @ApiModelProperty(value = "预约时间")
    @TableField("subscribe_time")
@@ -68,7 +68,14 @@
    @TableField("create_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime createTime;
    @TableField(exist = false)
    private String idStr;
    @TableField(exist = false)
    private Long orderId;
    public void setId(Long id) {
        this.id = id;
        this.idStr = String.valueOf(id);
    }
}