car-collect/ruoyi-collect-common/src/main/java/com/ruoyi/collect/domain/EmpMiddleCar.java

53 lines
1.1 KiB
Java
Raw Blame History

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.collect.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* @author Lff
* @Date 2023/8/30 18:52
* @Description
*/
@Data
public class EmpMiddleCar {
/**
* 员工汽车中间表唯一标识:主键
*/
private Integer middleId;
/**
* 绑定员工
*/
private Integer empId;
/**
* 绑定汽车
*/
private Integer carId;
/**
* 创建人名称
*/
private String createName;
/**
* 创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
* 修改人名称
*/
private String updateName;
/**
* 修改时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
/**
* 逻辑删除 0正常 1删除
*/
private Integer deletion;
}