|
@@ -3,6 +3,8 @@ package com.aizuda.boot.modules.flw.entity;
|
|
|
import com.aizuda.core.bean.BaseEntity;
|
|
|
import com.aizuda.core.bean.SuperEntity;
|
|
|
import com.aizuda.core.validation.Create;
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import jakarta.validation.constraints.NotBlank;
|
|
@@ -29,12 +31,15 @@ public class FlwProcessApproval extends SuperEntity {
|
|
|
@Schema(description = "租户ID")
|
|
|
private String tenantId;
|
|
|
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
@Schema(description = "创建ID")
|
|
|
- private String createId;
|
|
|
+ private Long createId;
|
|
|
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
@Schema(description = "创建人")
|
|
|
private String createBy;
|
|
|
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
@Schema(description = "创建时间")
|
|
|
private Date createTime;
|
|
|
|