1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.fdkankan.manage.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-06-22
- */
- @Getter
- @Setter
- @TableName("t_scene_copy_log")
- public class SceneCopyLog implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- @TableField("old_num")
- private String oldNum;
- @TableField("new_num")
- private String newNum;
- @TableField("copy_user_id")
- private Long copyUserId;
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- @TableField("create_time")
- private String createTime;
- @TableField("update_time")
- private String updateTime;
- }
|