123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.fjhx.entity.example;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.fjhx.base.BaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- @Data
- @EqualsAndHashCode(callSuper = true)
- public class ExampleInfo extends BaseEntity {
-
- private Long processInfoId;
-
- private String title;
-
- private Integer flowType;
-
- private Long processTenantId;
-
- private Long processNodeId;
-
- private String processNodeCode;
-
- private Integer handleResult;
-
- private Integer complete;
-
- private Long flowLinkNo;
-
- private String cacheData;
-
- private String remarks;
-
- @TableField(fill = FieldFill.INSERT)
- @TableLogic
- private Integer delFlag;
- }
|