50 lines
1.2 KiB
Java
50 lines
1.2 KiB
Java
package com.jdc.jdcproject.entity;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import java.io.Serializable;
|
||
import java.time.LocalDateTime;
|
||
import java.util.Date;
|
||
|
||
import io.swagger.v3.oas.annotations.media.Schema;
|
||
import lombok.Data;
|
||
|
||
/**
|
||
* <p>
|
||
* 电机车作业时间统计台帐;
|
||
* </p>
|
||
*
|
||
* @author haoyanlu
|
||
* @since 2025-06-14
|
||
*/
|
||
@TableName("DianJiChe_TimeTable")
|
||
@Schema(name = "DianjicheTimetable", description = "电机车作业时间统计台帐;")
|
||
@Data
|
||
public class DianjicheTimetable implements Serializable {
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
@Schema(description = "主键")
|
||
@TableId("Timeid")
|
||
private String timeId;
|
||
|
||
@Schema(description = "外键, 关联班次表,0,1,2代表甲乙丙三个班")
|
||
private Integer shiftId;
|
||
|
||
@Schema(description = "总时间min单位")
|
||
private Integer totaltime;
|
||
|
||
@Schema(description = "生产时间min单位")
|
||
private Integer productiontime;
|
||
|
||
@Schema(description = "非生产时间min单位")
|
||
private Integer nonProductivetime;
|
||
|
||
@Schema(description = "操作时间单位")
|
||
private Date date;
|
||
|
||
@Schema(description = "台数")
|
||
private Integer units;
|
||
|
||
}
|