POST api/ppadmin/savearticlelist

保存经典文献

Request Information

URI Parameters

None.

Body Parameters

参数

ArticleList
NameDescriptionTypeAdditional information
Id

主键ID

string

Max length: 36

Title

文献标题

string

Max length: 50

Hot

浏览量

integer

None.

Author

作者

string

Max length: 20

Content

内容

string

None.

AddTime

添加时间

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Title": "sample string 2",
  "Hot": 3,
  "Author": "sample string 4",
  "Content": "sample string 5",
  "AddTime": "2024-09-25T00:06:57.5000307+08:00"
}

text/html

Sample:
{"Id":"sample string 1","Title":"sample string 2","Hot":3,"Author":"sample string 4","Content":"sample string 5","AddTime":"2024-09-25T00:06:57.5000307+08:00"}

application/xml, text/xml

Sample:
<ArticleList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <AddTime>2024-09-25T00:06:57.5000307+08:00</AddTime>
  <Author>sample string 4</Author>
  <Content>sample string 5</Content>
  <Hot>3</Hot>
  <Id>sample string 1</Id>
  <Title>sample string 2</Title>
</ArticleList>

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});