xinwei #3
@ -0,0 +1,47 @@
|
||||
package cn.iocoder.yudao.module.parking.dal.dataobject.vehiclerecord;
|
||||
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
||||
|
||||
/**
|
||||
* 车辆进出记录数据 DO
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@TableName("vehicle_record")
|
||||
@KeySequence("vehicle_record_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class VehicleRecordDO extends BaseDO {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
@TableId
|
||||
private Long id;
|
||||
/**
|
||||
* 进或出
|
||||
*/
|
||||
private String intoOrOut;
|
||||
/**
|
||||
* 车牌号
|
||||
*/
|
||||
private String licenseNumber;
|
||||
/**
|
||||
* 时间
|
||||
*/
|
||||
private String time;
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
private String picture;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user