package com.iailab.module.pms.production.device.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author DongYukun
|
* @Description
|
* @createTime 2023年02月28日 17:30:14
|
*/
|
@Data
|
@TableName("t_device_run_time")
|
public class RunTimeEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(value = "id", type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 日期
|
*/
|
private String rq;
|
|
/**
|
* 班次
|
*/
|
private String bc;
|
|
/**
|
* 班次名称
|
*/
|
@TableField(exist = false)
|
private String bcName;
|
|
/**
|
* 流水号
|
*/
|
private String lsh;
|
|
/**
|
* 时长项目
|
*/
|
private String scxm;
|
|
/**
|
* 时长项目名称
|
*/
|
@TableField(exist = false)
|
private String scxmName;
|
|
/**
|
* 时长项目类型
|
*/
|
private String runTimeType;
|
|
/**
|
* 时长项目类型名称
|
*/
|
@TableField(exist = false)
|
private String runTimeTypeName;
|
|
/**
|
* 小时数
|
*/
|
private Long xss;
|
|
/**
|
* 分钟数
|
*/
|
private Long fzs;
|
|
/**
|
* 总时长(分钟)
|
*/
|
private Long zsc;
|
|
/**
|
* 备注
|
*/
|
private String bz;
|
|
/**
|
* 创建人
|
*/
|
private String cjr;
|
|
/**
|
* 创建时间
|
*/
|
private Date cjsj;
|
|
/**
|
* 修改人
|
*/
|
private String xgr;
|
|
/**
|
* 修改时间
|
*/
|
private Date xgsj;
|
|
}
|