Files
xgy-oa/klp-ems/src/main/java/com/klp/ems/domain/EmsTimePeriod.java

63 lines
1.1 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.klp.ems.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 时间段(峰谷平)对象 ems_time_period
*
* @author Joshi
* @date 2025-12-05
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("ems_time_period")
public class EmsTimePeriod extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 时间段ID
*/
@TableId(value = "period_id")
private Long periodId;
/**
* 时间段名称(峰、谷、平)
*/
private String periodName;
/**
* 时间段类型0=峰1=谷2=平
*/
private Integer periodType;
/**
* 开始时间HH:mm格式
*/
private String startTime;
/**
* 结束时间HH:mm格式
*/
private String endTime;
/**
* 是否跨天0=否1=是
*/
private Integer crossDay;
/**
* 删除标志0=存在 2=删除)
*/
@TableLogic
private String delFlag;
/**
* 备注
*/
private String remark;
}