罗元桥
2021-08-30 eda58e0e6d4abdd2b060e28867d103045845aa69
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngVaccinesEnrollRecordDO.java
@@ -1,11 +1,11 @@
package com.panzhihua.service_community.model.dos;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
/**
 * @auther lyq
@@ -53,7 +53,7 @@
    private Date updateAt;
    /**
     * 报名类型(1.小程序用户  2.小程序家庭成员)
     * 报名类型(1.小程序用户 2.小程序家庭成员)
     */
    private Integer familyUserType;
@@ -87,23 +87,17 @@
     */
    private Long communityId;
    /**
     * 报名类型(1.小程序用户  2.小程序家庭成员)
     */
    public interface familyUserType{
        int mini = 1;
        int family = 2;
    }
    @Override
    public String toString() {
        return "ComMngVaccinesEnrollRecordDO{" +
                "id=" + id +
                ", type=" + type +
                ", userId=" + userId +
                ", familyUserId=" + familyUserId +
                ", createAt=" + createAt +
                ", updateAt=" + updateAt +
                "}";
        return "ComMngVaccinesEnrollRecordDO{" + "id=" + id + ", type=" + type + ", userId=" + userId
            + ", familyUserId=" + familyUserId + ", createAt=" + createAt + ", updateAt=" + updateAt + "}";
    }
    /**
     * 报名类型(1.小程序用户 2.小程序家庭成员)
     */
    public interface familyUserType {
        int mini = 1;
        int family = 2;
    }
}