parent
08db76f0e5
commit
64580e680c
@ -1,25 +1,33 @@
|
||||
package com.ssf.mysqloracletest.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@TableName(value = "people_vehicle_flow")
|
||||
@TableName(value = "statistics_user_vehicle_info")
|
||||
@Data
|
||||
public class PeopleVehicleFlow implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 类别(1:人/2:车)
|
||||
* */
|
||||
private Integer statistic_type;
|
||||
/**
|
||||
* 日期
|
||||
* */
|
||||
private String date;
|
||||
private String statistic_time;
|
||||
|
||||
/**
|
||||
* 流量
|
||||
* */
|
||||
private String flow;
|
||||
private String statistic_count;
|
||||
|
||||
/**
|
||||
* 类别(1:人/2:车)
|
||||
* */
|
||||
private Integer type;
|
||||
}
|
||||
|
Loading…
Reference in new issue