123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- package com.ygj.yuemum.domain.utils;
- public class AddMMInfo {
- private String truename;
- private String mobile_phone;
- private String idcard;
- private String seniority;
- private String babynumber;
- private int gender;
- private String cityname;
- private String constellation;
- private String zodiac;
- private int store_id;
- private int np;
- private String ethnicgroup;
- private String height;
- private String marriage;
- private String highlight;
- private String education;
- private String weight;
- private String salt;
- private Integer servicesdays;
- private String characters;
- private Integer twins;
- public Integer getServicesdays() {
- return servicesdays;
- }
- public void setServicesdays(Integer servicesdays) {
- this.servicesdays = servicesdays;
- }
- public String getCharacters() {
- return characters;
- }
- public void setCharacters(String characters) {
- this.characters = characters;
- }
- public Integer getTwins() {
- return twins;
- }
- public void setTwins(Integer twins) {
- this.twins = twins;
- }
- public String getSalt() {
- return salt;
- }
- public void setSalt(String salt) {
- this.salt = salt;
- }
- public String getWeight() {
- return weight;
- }
- public void setWeight(String weight) {
- this.weight = weight;
- }
- public String getEthnicgroup() {
- return ethnicgroup;
- }
- public void setEthnicgroup(String ethnicgroup) {
- this.ethnicgroup = ethnicgroup;
- }
- public String getHeight() {
- return height;
- }
- public void setHeight(String height) {
- this.height = height;
- }
- public String getMarriage() {
- return marriage;
- }
- public void setMarriage(String marriage) {
- this.marriage = marriage;
- }
- public String getHighlight() {
- return highlight;
- }
- public void setHighlight(String highlight) {
- this.highlight = highlight;
- }
- public String getEducation() {
- return education;
- }
- public void setEducation(String education) {
- this.education = education;
- }
- public String getTruename() {
- return truename;
- }
- public void setTruename(String truename) {
- this.truename = truename;
- }
- public String getMobile_phone() {
- return mobile_phone;
- }
- public void setMobile_phone(String mobile_phone) {
- this.mobile_phone = mobile_phone;
- }
- public String getIdcard() {
- return idcard;
- }
- public void setIdcard(String idcard) {
- this.idcard = idcard;
- }
- public String getSeniority() {
- return seniority;
- }
- public void setSeniority(String seniority) {
- this.seniority = seniority;
- }
- public String getBabynumber() {
- return babynumber;
- }
- public void setBabynumber(String babynumber) {
- this.babynumber = babynumber;
- }
- public int getGender() {
- return gender;
- }
- public void setGender(int gender) {
- this.gender = gender;
- }
- public String getCityname() {
- return cityname;
- }
- public void setCityname(String cityname) {
- this.cityname = cityname;
- }
- public String getConstellation() {
- return constellation;
- }
- public void setConstellation(String constellation) {
- this.constellation = constellation;
- }
- public String getZodiac() {
- return zodiac;
- }
- public void setZodiac(String zodiac) {
- this.zodiac = zodiac;
- }
- public int getStore_id() {
- return store_id;
- }
- public void setStore_id(int store_id) {
- this.store_id = store_id;
- }
- public int getNp() {
- return np;
- }
- public void setNp(int np) {
- this.np = np;
- }
- }
|