linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/eCallEventTwo/entity/ECallEventTwoEntity.java
@@ -16,16 +16,14 @@
 */
package org.springblade.modules.eCallEventTwo.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.util.Date;
@@ -42,9 +40,16 @@
public class ECallEventTwoEntity   {
   private static final long serialVersionUID = 1L;
   /** 工单ID */
   /**
    * 工单ID
    */
   @ApiModelProperty(value = "主键ID", example = "")
   @TableId(value = "order_id", type = IdType.AUTO)
   @TableId(value = "id", type = IdType.ASSIGN_ID)
   private Long id;
   /** 工单ID */
   @ApiModelProperty(value = "orderId", example = "")
   @TableField(value = "order_id")
   private Long orderId;
   /** 工单号/话务单号 */
@@ -263,4 +268,33 @@
   @TableField("tag_redo")
   private String tagRedo;
   @ApiModelProperty(value = "定位地址", example = "")
   @TableField("location")
   private String location;
   @ApiModelProperty(value = "创建人", example = "")
   @TableField("create_user_id")
   private Long createUserId;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   @TableField(value = "create_time",fill = FieldFill.INSERT)
   private Date createTime;
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   @TableField(value = "update_time",fill = FieldFill.UPDATE)
   private Date updateTime;
   /**
    * 网格编号
    */
   @ApiModelProperty(value = "网格编号")
   @TableField("grid_code")
   private String gridCode;
   /**
    * 警务网格编号
    */
   @ApiModelProperty(value = "警务网格编号")
   @TableField("jw_grid_code")
   private String jwGridCode;
}