Linjiajia
2024-01-29 b17b9aa59bae6d03055f14d937821655dfaffa1f
app/src/main/java/com/application/zhangshi_app_android/bean/MarriageInfoBean.java
@@ -21,8 +21,8 @@
    private String workAddress;
    //本人婚姻状态 0未婚 1初婚 2离婚 3再婚
    private int marryStatus;
    //本人性别 0女 1男
    private int sex;
    //本人性别
    private String sex;
    //本人民族
    private String nation;
    //本人电话号码
@@ -43,8 +43,8 @@
    private String spouseWorkAddress;
    //配偶婚姻状态 0未婚 1初婚 2离婚 3再婚
    private int spouseMarryStatus;
    //配偶性别 0女 1男
    private int spouseSex;
    //配偶性别
    private String spouseSex;
    //配偶民族
    private String spouseNation;
    //配偶电话号码
@@ -68,7 +68,7 @@
    //领取独生子女证时间
    private String oneBornTime;
    //需要声明的情况
    private String content;
    private String notion;
    private String contentTime;
    //备注
    private String remark;
@@ -99,8 +99,8 @@
    public String getBirthday() { return birthday; }
    public void setBirthday(String value) { this.birthday = value; }
    public String getContent() { return content; }
    public void setContent(String value) { this.content = value; }
    public String getNotion() { return notion; }
    public void setNotion(String value) { this.notion = value; }
    public String getHandbookStatus() {
        return handbookStatus == 0 ? "否" : "是";
@@ -197,10 +197,10 @@
    public void setRemark(String value) { this.remark = value; }
    public String getSex() {
        return sex == 0 ? "女" : "男";
        return sex;
    }
    public void setSex(String value) {
        this.sex = value.equals("女") ? 0 : 1;
        this.sex = value;
    }
    public String getSpouseAddress() { return spouseAddress; }
@@ -243,8 +243,8 @@
    public String getSpousePhone() { return spousePhone; }
    public void setSpousePhone(String value) { this.spousePhone = value; }
    public int getSpouseSex() { return spouseSex; }
    public void setSpouseSex(int value) { this.spouseSex = value; }
    public String getSpouseSex() { return spouseSex; }
    public void setSpouseSex(String value) { this.spouseSex = value; }
    public String getSpouseWorkAddress() { return spouseWorkAddress; }
    public void setSpouseWorkAddress(String value) { this.spouseWorkAddress = value; }
@@ -261,7 +261,7 @@
        private Object myId;
        private String nation;
        private String phone;
        private int sex;
        private String sex;
        private String workAddress;
        public String getAddress() { return address; }
@@ -300,8 +300,8 @@
        public String getPhone() { return phone; }
        public void setPhone(String value) { this.phone = value; }
        public int getSex() { return sex; }
        public void setSex(int value) { this.sex = value; }
        public String getSex() { return sex; }
        public void setSex(String value) { this.sex = value; }
        public String getWorkAddress() { return workAddress; }
        public void setWorkAddress(String value) { this.workAddress = value; }