123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.fdkankan.fusion.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import java.io.Serializable;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-07-27
- */
- @Getter
- @Setter
- @TableName("t_case_num")
- public class CaseNumEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- @TableField("case_id")
- private Integer caseId;
- @TableField("num_type")
- private Integer numType;
- @TableField("num")
- private String num;
- @TableField("tb_status")
- @TableLogic
- private Integer tbStatus;
- }
|