1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.ozs.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.ozs.common.annotation.Excel;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 机车信息表
- * </p>
- *
- * @author ozs
- * @since 2023-04-11
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class BaseVehicle implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 机车编码
- */
- @Excel(name = "机车编码")
- private String vehicleCode;
- /**
- * 机车名称
- */
- @Excel(name = "机车名称")
- private String vehicleName;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新者
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 备注
- */
- private String remark;
- }
|