forked from gzzfw/backEnd/gz-dyh

dyh-service/dyh-sync-bydyh/src/main/java/cn/huge/module/ctuser/domain/dto/GZCtAccountDTO.java
File was renamed from dyh-service/dyh-sync/src/main/java/cn/huge/module/sync/domain/target/TargetCtAccount.java
@@ -1,4 +1,4 @@
package cn.huge.module.sync.domain.target;
package cn.huge.module.ctuser.domain.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
@@ -17,85 +17,71 @@
 * @version 1.0.0
 */
@Data
public class TargetCtAccount {
public class GZCtAccountDTO {
    /**
    * 账号编号
    */
    @TableId(value = "id")
    private String id;
    /**
    * 用户编号
    */
    @TableField(value = "user_id")
    private String userId;
    /**
    * 帐号类型,1:平台web端,2:平台小程序
    */
    @TableField(value = "acc_type")
    private Integer accType;
    /**
    * 身份唯一标识(存储唯一标识,比如账号、邮箱、手机号、第三方获取的唯一标识等)
    */
    @TableField(value = "acc")
    private String acc;
    /**
    * 授权凭证(比如密码 第三方登录的token等)
    */
    @TableField(value = "cipher")
    private String cipher;
    /**
    * 授权凭证明文
    */
    @TableField(value = "cipher_open")
    private String cipherOpen;
    /**
    * 密码最新更新时间
    */
    @TableField(value = "cipher_time")
    private Date cipherTime;
    /**
    * 最新登录时间
    */
    @TableField(value = "login_time")
    private Date loginTime;
    /**
    * 限制登录时间(密码错误次数超过限制,默认30分钟)
    */
    @TableField(value = "limit_time")
    private Date limitTime;
    /**
    * 删除状态,0:未删除,1:已删除
    */
    @TableLogic
    @TableField(value = "delete_status")
    private Integer deleteStatus;
    /**
    * 顾客编号
    */
    @TableField(value = "cust_id")
    private String custId;
    /**
    * 创建时间
    */
    @TableField(value = "create_time")
    private Date createTime;
    /**
    * 更新时间
    */
    @TableField(value = "update_time")
    private Date updateTime;
}