| | |
| | | */ |
| | | 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; |
| | |
| | | |
| | | /** 工单ID */ |
| | | @ApiModelProperty(value = "主键ID", example = "") |
| | | @TableId(value = "order_id", type = IdType.AUTO) |
| | | @TableId(value = "order_id", type = IdType.ASSIGN_ID) |
| | | private Long orderId; |
| | | |
| | | /** 工单号/话务单号 */ |
| | |
| | | @TableField("tag_redo") |
| | | private String tagRedo; |
| | | |
| | | @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; |
| | | |
| | | } |