mitao
2025-03-19 0ab9dfd8f122195e4e9f09bd50c59e0a47450bec
ruoyi-system/src/main/java/com/ruoyi/system/model/TFaultRepairMessage.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDate;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
@@ -34,12 +36,20 @@
    private String id;
    @ApiModelProperty(value = "用户id")
    @TableField("app_user_id")
    private String appUserId;
    @TableField("tenant_id")
    private String tenantId;
    @ApiModelProperty(value = "物品分类id")
    @TableField("item_type_id")
    private String itemTypeId;
    @ApiModelProperty(value = "物品id")
    @TableField("item_id")
    private String itemId;
    @ApiModelProperty(value = "合同id")
    @TableField("contract_id")
    private String contractId;
    @ApiModelProperty(value = "故障区域")
    @TableField("fault_area_name")
@@ -66,9 +76,8 @@
    private Integer repairType;
    @ApiModelProperty(value = "上门时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("visit_time")
    private LocalDateTime visitTime;
    private String visitTime;
    @ApiModelProperty(value = "联系电话")
    @TableField("contact_number")
@@ -83,9 +92,9 @@
    private String handlePerson;
    @ApiModelProperty(value = "处理时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @TableField("handle_time")
    private LocalDateTime handleTime;
    private LocalDate handleTime;
    @ApiModelProperty(value = "结果描述")
    @TableField("result_describe")
@@ -99,6 +108,13 @@
    @TableField("attachment")
    private String attachment;
    @ApiModelProperty(value = "附件名称  逗号分割")
    @TableField("attachment_name")
    private String attachmentName;
    @ApiModelProperty(value = "维修单号")
    @TableField("code")
    private String code;
    @ApiModelProperty(value = "状态 1=待处理 2=已处理")
    @TableField("status")
    private Integer status;