|
@@ -0,0 +1,31 @@
|
|
|
|
|
+package com.etotem.cfc.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("service_role_applications")
|
|
|
|
|
+public class ServiceRoleApplication {
|
|
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+ private Long userId;
|
|
|
|
|
+ private String roles;
|
|
|
|
|
+ private String idCard;
|
|
|
|
|
+ private String idCardImages;
|
|
|
|
|
+ private String certificateImages;
|
|
|
|
|
+ private String province;
|
|
|
|
|
+ private String city;
|
|
|
|
|
+ private String district;
|
|
|
|
|
+ private String street;
|
|
|
|
|
+ private String addressDetail;
|
|
|
|
|
+ private Integer status;
|
|
|
|
|
+ private String rejectReason;
|
|
|
|
|
+ private Long reviewedBy;
|
|
|
|
|
+ private LocalDateTime reviewedAt;
|
|
|
|
|
+ private LocalDateTime createdAt;
|
|
|
|
|
+ private LocalDateTime updatedAt;
|
|
|
|
|
+}
|