| | |
| | | package com.jcdm.main.da.passingStationCollection.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.jcdm.common.annotation.Excel; |
| | |
| | | * @author yyt |
| | | * @date 2023-12-12 |
| | | */ |
| | | @Data |
| | | public class DaPassingStationCollection extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @Excel(name = "出站时间") |
| | | private Date outboundTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String startTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String endTime; |
| | | |
| | | /** 入站是否合格 */ |
| | | @Excel(name = "入站是否合格") |
| | | private String inRsSign; |
| | |
| | | @Excel(name = "节拍时间") |
| | | private String beatTime; |
| | | |
| | | @TableField(exist = false) |
| | | private Long beatTimeLong; |
| | | |
| | | private Long[] ids; |
| | | |
| | | public Long[] getIds() { |