46 lines
855 B
Java
46 lines
855 B
Java
|
|
package com.klp.domain;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|||
|
|
import com.klp.common.core.domain.BaseEntity;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import lombok.EqualsAndHashCode;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 排班模板对象 wms_attendance_template
|
|||
|
|
*
|
|||
|
|
* @author klp
|
|||
|
|
* @date 2026-06-06
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@EqualsAndHashCode(callSuper = true)
|
|||
|
|
@TableName("wms_attendance_template")
|
|||
|
|
public class WmsAttendanceTemplate extends BaseEntity {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID=1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 主键ID
|
|||
|
|
*/
|
|||
|
|
@TableId(value = "template_id")
|
|||
|
|
private Long templateId;
|
|||
|
|
/**
|
|||
|
|
* 模板名称
|
|||
|
|
*/
|
|||
|
|
private String templateName;
|
|||
|
|
/**
|
|||
|
|
* 模板内容
|
|||
|
|
*/
|
|||
|
|
private String templateContent;
|
|||
|
|
/**
|
|||
|
|
* 删除标志(0=存在 2=删除)
|
|||
|
|
*/
|
|||
|
|
@TableLogic
|
|||
|
|
private String delFlag;
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
private String remark;
|
|||
|
|
|
|||
|
|
}
|