package com.cyksj.model.manage.request; import com.cyksj.model.entity.AppleAutoRegisterData; import lombok.Data; /** * @author chan * @date 2022/11/3 3:49 PM */ @Data public class RegisterReq { /** * 平台 Spotify google apple */ private String platform; private Long goodsId; private String creationPoint; private String displayname; private String passwordRepeat; private String password; private String username; private String birthYear; private String birthMonth; private String birthDay; private String gender; private String email; private String country; private String phone; private String nickname; private String appleRegisterType; private AppleAutoRegisterData.CountryOrArea countryOrArea; private String code; }