文档
测试

数据维护接口-人员维护-UserPush

POST
http://IP+PORT/ WebService/OAandRL/OAService.asmx

接口描述

数据维护接口-单位维护 方法名 UserPush

请求参数

参数名
类型
描述
必填
employee_id
string
唯一标志码
必填
number
string
编号
必填
name
string
职工姓名
必填
identity_card
string
身份证号
必填
gender
string
性别
必填
birthday
string
出生日期
必填
id_type
string
证件类型
必填
id_card
string
证件号码
必填
nation
string
民族
必填
mobile
string
移动电话
必填

请求参数示例

``` { "info": { "employee_id": "唯一主键", "number": "10001", "name": "职工姓名", "identity_card": "3XXXXXXXXXXXXXXXXXXXXXX", "gender": "性别", "birthday": "1990-01-01", "id_type": "证件类型", "id_card": "证件号码", "nation": "民族", "mobile": "移动电话" } } ```

响应参数

参数名
类型
描述
必填
code
int
0 成功 -1 返回错误 -2 程序内部错误
必填
msg
string
返回信息
必填
count
int
维护影响条数
必填

响应参数示例

``` { "code": 0, "msg": "", "count": 10 } ```