增加 websocket测试 POST http://39.105.123.195:30055/sta/peoStatistics 说明 / 示例 ### uri `/sta/peoStatistics` ### body ``` /** * 家庭户标识 */ @TableField("f_id") private String fId; /** * 身份证类型 */ @TableField("card_type") private String cardType; /** * 身份证号 */ @TableField("id_card") private String idCard; /** * 学籍号 */ @TableField("stu_id") private String stuId; /** * 户主 */ @TableField("f_head") private String fHead; /** * 与户主关系 */ @TableField("f_relation") private String fRelation; /** * 姓名 */ private String name; /** * 生日 */ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date birth; /** * 性别 1 男 2女 */ private Integer sex; /** * 民族 */ private Integer nation; /** * 政治面貌 */ @TableField("pol_status") private String polStatus; /** * 文化程度 */ @TableField("edu_level") private String eduLevel; /** * 户籍所在地 省 */ @TableField("c_province") private String cProvince; /** * 户籍所在地 市 */ @TableField("c_city") private String cCity; /** * 户籍所在地 区县 */ @TableField("c_county") private String cCounty; /** * 户籍所在地 乡镇 */ @TableField("c_countryside") private String cCountryside; /** * 户籍所在地 村 */ @TableField("c_village") private String cVillage; /** * 户籍所在地 详细地址 */ @TableField("c_detail") private String cDetail; /** * 现居住地 省 */ @TableField("n_province") private String nProvince; /** * 现居住地 市 */ @TableField("n_city") private String nCity; /** * 现居住地 区县 */ @TableField("n_county") private String nCounty; /** * 现居住地 乡镇 */ @TableField("n_countryside") private String nCountryside; /** * 现居住地 村 */ @TableField("n_village") private String nVillage; /** * 现居住地 详细地址 */ @TableField("n_detail") private String nDetail; /** * 联系电话 */ private String phone; /** * 教育局 */ @TableField("edu_bureau") private String eduBureau; /** * 学校名称 */ @TableField("school_name") private String schoolName; /** * 学校代码 */ @TableField("school_code") private Long schoolCode; /** * 学校类型 */ @TableField("school_type") private Integer schoolType; /** * 年级 */ private String grade; /** * 班级 */ @TableField("class") private String classname; /** * 就读状态 */ @TableField("study_status") private String studyStatus; /** * 是否建档立卡贫困户 */ @TableField("is_poor") private Integer isPoor; /** * 是否易地扶贫搬迁户 */ @TableField("is_move") private Integer isMove; /** * 是否残疾 */ @TableField("is_disability") private Integer isDisability; /** * 残疾人证书号 */ @TableField("dis_card") private String disCard; /** * 残疾类别 */ @TableField("dis_type") private String disType; /** * 残疾学生就读方式 */ @TableField("dis_study_type") private String disStudyType; ```
### uri `/sta/peoStatistics` ### body ``` /** * 家庭户标识 */ @TableField("f_id") private String fId; /** * 身份证类型 */ @TableField("card_type") private String cardType; /** * 身份证号 */ @TableField("id_card") private String idCard; /** * 学籍号 */ @TableField("stu_id") private String stuId; /** * 户主 */ @TableField("f_head") private String fHead; /** * 与户主关系 */ @TableField("f_relation") private String fRelation; /** * 姓名 */ private String name; /** * 生日 */ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date birth; /** * 性别 1 男 2女 */ private Integer sex; /** * 民族 */ private Integer nation; /** * 政治面貌 */ @TableField("pol_status") private String polStatus; /** * 文化程度 */ @TableField("edu_level") private String eduLevel; /** * 户籍所在地 省 */ @TableField("c_province") private String cProvince; /** * 户籍所在地 市 */ @TableField("c_city") private String cCity; /** * 户籍所在地 区县 */ @TableField("c_county") private String cCounty; /** * 户籍所在地 乡镇 */ @TableField("c_countryside") private String cCountryside; /** * 户籍所在地 村 */ @TableField("c_village") private String cVillage; /** * 户籍所在地 详细地址 */ @TableField("c_detail") private String cDetail; /** * 现居住地 省 */ @TableField("n_province") private String nProvince; /** * 现居住地 市 */ @TableField("n_city") private String nCity; /** * 现居住地 区县 */ @TableField("n_county") private String nCounty; /** * 现居住地 乡镇 */ @TableField("n_countryside") private String nCountryside; /** * 现居住地 村 */ @TableField("n_village") private String nVillage; /** * 现居住地 详细地址 */ @TableField("n_detail") private String nDetail; /** * 联系电话 */ private String phone; /** * 教育局 */ @TableField("edu_bureau") private String eduBureau; /** * 学校名称 */ @TableField("school_name") private String schoolName; /** * 学校代码 */ @TableField("school_code") private Long schoolCode; /** * 学校类型 */ @TableField("school_type") private Integer schoolType; /** * 年级 */ private String grade; /** * 班级 */ @TableField("class") private String classname; /** * 就读状态 */ @TableField("study_status") private String studyStatus; /** * 是否建档立卡贫困户 */ @TableField("is_poor") private Integer isPoor; /** * 是否易地扶贫搬迁户 */ @TableField("is_move") private Integer isMove; /** * 是否残疾 */ @TableField("is_disability") private Integer isDisability; /** * 残疾人证书号 */ @TableField("dis_card") private String disCard; /** * 残疾类别 */ @TableField("dis_type") private String disType; /** * 残疾学生就读方式 */ @TableField("dis_study_type") private String disStudyType; ```