You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.ruoyi.ykmap.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
/**
* 【营运管理部门】业务总览数据exl_operation_overview_data_route表实体类
* @author du
* @since 2024/8/14 10:17
*/
@Data
@ApiModel("业务总览数据")
@TableName(value = "exl_operation_overview_data_route")
public class Yywzl {
/**
* id
*/
@TableId
@ApiModelProperty("id")
private String id;
/**
* 创建id
*/
@ApiModelProperty("创建id")
private Integer creatorId;
/**
* 更新id
*/
@ApiModelProperty("更新id")
private Integer updaterId;
/**
* 更新时间
*/
@ApiModelProperty("更新时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime updateTime;
/**
* 创建时间
*/
@ApiModelProperty("创建时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime;
/**
* 区镇:吴中区、吴江区、虎丘区、姑苏区、工业园区、相城区
*/
@ApiModelProperty("区镇:吴中区、吴江区、虎丘区、姑苏区、工业园区、相城区")
private String area;
/**
* 线路总条数(条)
*/
@ApiModelProperty("线路总条数(条)")
private Integer lineTotalNum;
/**
* 数据时间(月份),时间戳
*/
@ApiModelProperty("数据时间(月份),时间戳")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate dataTime;
}