| | |
| | | package com.iailab.module.ansteel.sync.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2025年06月18日 |
| | | */ |
| | | public class SyncLogEntity { |
| | | @Data |
| | | @TableName("t_sync_log") |
| | | public class SyncLogEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(type = IdType.ASSIGN_UUID) |
| | | private String id; |
| | | private String tableName; |
| | | private String remark; |
| | | private Date createDate; |
| | | } |