|
@@ -1,39 +0,0 @@
|
|
|
-package com.ruoyi.zzb.study.domain;
|
|
|
-
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import lombok.AllArgsConstructor;
|
|
|
-import lombok.Data;
|
|
|
-import lombok.NoArgsConstructor;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-
|
|
|
-@AllArgsConstructor
|
|
|
-@NoArgsConstructor
|
|
|
-@Data
|
|
|
-@TableName("ZZB_BASE_PERSON_INFO")
|
|
|
-public class BasePersonInfo {
|
|
|
-
|
|
|
- private String userId;
|
|
|
- private String name;
|
|
|
- private String idcard;
|
|
|
- private String phone;
|
|
|
- private String policeNo;
|
|
|
- private String parentDeptName;
|
|
|
- private String parentDeptCode;
|
|
|
- private String deptName;
|
|
|
- private String deptCode;
|
|
|
-
|
|
|
- @TableLogic
|
|
|
- private String status;
|
|
|
- private String password;
|
|
|
-
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
- private String createTime;
|
|
|
-
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
- private String updateTime;
|
|
|
-}
|