| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.system.entity.BaseEntity; |
| | | import lombok.Data; |
| | |
| | | |
| | | /** |
| | | * 考核模板对象 t_check_template |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_template") |
| | | public class CheckTemplate |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | private Date updateTime; |
| | | |
| | | /** 逻辑删除 */ |
| | | private String deleted; |
| | | private Integer deleted; |
| | | |
| | | |
| | | |