POST api/structure/associatedusersdel

删除用户关联关系

Request Information

URI Parameters

None.

Body Parameters

用户关系信息

UserStructure
NameDescriptionTypeAdditional information
StructureId

组织架构编号

integer

None.

MemberId

学生编号

string

None.

MemberType

用户类型 1.老师 2.学生

integer

None.

Path

组织架构路径

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StructureId": 1,
  "MemberId": "sample string 2",
  "MemberType": 3,
  "Path": "sample string 4"
}

text/html

Sample:
{"StructureId":1,"MemberId":"sample string 2","MemberType":3,"Path":"sample string 4"}

application/xml, text/xml

Sample:
<UserStructure xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <MemberId>sample string 2</MemberId>
  <MemberType>3</MemberType>
  <Path>sample string 4</Path>
  <StructureId>1</StructureId>
</UserStructure>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

删除用户关联关系

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": true
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":true}

application/xml, text/xml

Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>true</Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfboolean>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});