package com.zy.asrs.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 lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
@TableName("asr_station_flow_capacity")
|
public class StationFlowCapacity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@TableField("station_id")
|
private Integer stationId;
|
|
@TableField("direction_code")
|
private String directionCode;
|
|
@TableField("buffer_capacity")
|
private Integer bufferCapacity;
|
|
private String memo;
|
|
@TableField(exist = false)
|
private Long createBy;
|
|
@TableField("create_time")
|
private Date createTime;
|
|
@TableField(exist = false)
|
private Long updateBy;
|
|
@TableField("update_time")
|
private Date updateTime;
|
}
|