package com.ltkj.system.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 体检导检单打印记录对象 tj_djd_dyjl
|
*
|
* @author ltkj
|
* @date 2024-10-25
|
*/
|
@Data
|
public class TjDjdDyjl extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* $column.columnComment
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
|
private String hzxm;
|
|
/**
|
* $column.columnComment
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String tjNum;
|
|
|
/**
|
* $column.columnComment
|
*/
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
private String cardId;
|
|
|
private String dylx;
|
|
/**
|
* 打印次数
|
*/
|
@Excel(name = "打印次数")
|
private Long dycs;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date dysj;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(exist = false)
|
private String beginTime;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(exist = false)
|
private String endTime;
|
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setTjNum(String tjNum) {
|
this.tjNum = tjNum;
|
}
|
|
public String getTjNum() {
|
return tjNum;
|
}
|
|
public void setCardId(String cardId) {
|
this.cardId = cardId;
|
}
|
|
public String getCardId() {
|
return cardId;
|
}
|
|
public void setDycs(Long dycs) {
|
this.dycs = dycs;
|
}
|
|
public Long getDycs() {
|
return dycs;
|
}
|
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("tjNum", getTjNum())
|
.append("cardId", getCardId())
|
.append("dycs", getDycs())
|
.append("createTime", getCreateTime())
|
.append("createBy", getCreateBy())
|
.append("updateTime", getUpdateTime())
|
.append("updateBy", getUpdateBy())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|