JdcProject/src/main/java/com/jdc/jdcproject/entity/DianjicheTimetable.java
2025-11-28 15:36:00 +08:00

50 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 = "外键, 关联班次表012代表甲乙丙三个班")
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;
}