1
phpcjl
2024-12-20 d51a8cfa10c34d9c1e7d6b4726d31e75ecee5dc6
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java
@@ -32,7 +32,7 @@
    @ApiModelProperty(value = "主键")
    @TableId("id")
    private Integer id;
    private Long id;
    @ApiModelProperty(value = "用户id")
    @TableField("app_user_id")
@@ -55,7 +55,7 @@
    @TableField("user_address")
    private String userAddress;
    @ApiModelProperty(value = "状态(0=待服务,1=已服务,2=已取消)")
    @ApiModelProperty(value = "状态(0=待服务,1=已服务,2=已取消, 3=已到期)")
    @TableField("status")
    private Integer status;
@@ -68,16 +68,13 @@
    @TableField("create_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime createTime;
    @ApiModelProperty(value = "订单id")
    private Long orderId;
    @TableField(exist = false)
    private String idStr;
    @TableField(exist = false)
    private Long orderId;
    public void setId(Integer id) {
    public void setId(Long id) {
        this.id = id;
        this.idStr = String.valueOf(id);
    }