文档
测试

获取属性数据

GET
http://www.da.com/mobile/index.php?m=api&c=profession&a=GetAttrData

请求参数

参数名
类型
描述
必填
requset_type
1.个人用户 2.企业用户 全局通用
必填
token
string
* 用户标识
必填

响应说明

```language /** * 职位类型 */ POST_TYPE /** * 工作类型 */ WORK_TYPE /** * 每月薪资 */ WAGES /** * 福利待遇 */ TREA /** * 年龄要求 */ AGE_REQUIRE /** * 经验要求 */ EXP_REQUIRE /** * 工作经验 */ WORK_EXP /** * 求职状态 */ JOB_STATUS ``` ```json { "code": 200, "title": "获取属性数据", "data": [ { "attr_id": "8", "attr_name": "年龄要求", //属性类型 "type": "AGE_REQUIRE", // 类型唯一标签 "parent_id": "0", "befter_id": "0", "person_is_show": "1", "person_sort": "0", "business_is_show": "1", "business_sort": "0", "create_time": "1600840697", "update_time": "0", "value_arr": [ { "value_id": "12", "value_name": "20岁以下", "attr_type": "8", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841542", "update_time": "0", "child": [] }, { "value_id": "13", "value_name": "20-30岁", "attr_type": "8", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841542", "update_time": "0", "child": [] } ] }, { "attr_id": "6", "attr_name": "福利待遇", "type": "TREA", "parent_id": "0", "befter_id": "0", "person_is_show": "1", "person_sort": "0", "business_is_show": "1", "business_sort": "0", "create_time": "1600840675", "update_time": "0", "value_arr": [ { "value_id": "19", "value_name": "五险一金", "attr_type": "6", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841763", "update_time": "0", "child": [] }, { "value_id": "20", "value_name": "包吃", "attr_type": "6", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841763", "update_time": "0", "child": [] } ] }, { "attr_id": "4", "attr_name": "每月薪资", "type": "WAGES", "parent_id": "0", "befter_id": "0", "person_is_show": "1", "person_sort": "0", "business_is_show": "1", "business_sort": "0", "create_time": "1600840659", "update_time": "0", "value_arr": [ { "value_id": "6", "value_name": "按天结", "attr_type": "4", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841390", "update_time": "0", "child": [ { "value_id": "8", "value_name": "100以下/天", "attr_type": "4", "parent_id": "6", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841390", "update_time": "0", "child": [] } ] }, { "value_id": "7", "value_name": "按月结", "attr_type": "4", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841390", "update_time": "0", "child": [ { "value_id": "9", "value_name": "1000以下/月", "attr_type": "4", "parent_id": "7", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841390", "update_time": "0", "child": [] } ] } ] }, { "attr_id": "2", "attr_name": "工作类型", "type": "WORK_TYPE", "parent_id": "0", "befter_id": "0", "person_is_show": "1", "person_sort": "0", "business_is_show": "1", "business_sort": "0", "create_time": "1600840609", "update_time": "0", "value_arr": [ { "value_id": "17", "value_name": "顶班司机", "attr_type": "2", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841695", "update_time": "0", "child": [] }, { "value_id": "18", "value_name": "正班司机", "attr_type": "2", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841695", "update_time": "0", "child": [] } ] }, { "attr_id": "1", "attr_name": "职位类型", "type": "POST_TYPE", "parent_id": "0", "befter_id": "0", "person_is_show": "1", "person_sort": "1", "business_is_show": "1", "business_sort": "1", "create_time": "1600840543", "update_time": "0", "value_arr": [ { "value_id": "2", "value_name": "维修", "attr_type": "1", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841168", "update_time": "0", "child": [ { "value_id": "4", "value_name": "维修机械工", "attr_type": "1", "parent_id": "2", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841168", "update_time": "0", "child": [] } ] }, { "value_id": "1", "value_name": "司机", "attr_type": "1", "parent_id": "0", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841139", "update_time": "0", "child": [ { "value_id": "5", "value_name": "A本驾驶员", "attr_type": "1", "parent_id": "1", "value_type": null, "is_show": "1", "sort": "0", "create_time": "1600841168", "update_time": "0", "child": [] } ] } ] } ], "message": "操作成功" } ```