GET api/material/materialpricelog/GetMaterialPriceLog?id={id}

获取一个材料价格记录信息

请求信息

URI 参数

名称说明类型其他信息
id

材料价格记录Id

string

Required

Body 参数

None.

响应信息

响应说明

ResponseExOfMaterialPriceLogEntity
名称说明类型其他信息
StatusCode

状态码

ResponseStatusCode

None.

Message

信息

string

None.

Data

数据

MaterialPriceLogEntity

None.

响应格式

application/json, text/json

Sample:
{
  "StatusCode": 0,
  "Message": "sample string 1",
  "Data": {
    "MaterialId": "sample string 1",
    "LogTime": "2024-09-21 16:18:28",
    "Price": 3.0,
    "Id": "sample string 4",
    "CreateDate": "2024-09-21 16:18:28",
    "CreateUserId": "sample string 5",
    "CreateUserName": "sample string 6",
    "ModifyDate": "2024-09-21 16:18:28",
    "ModifyUserId": "sample string 7",
    "ModifyUserName": "sample string 8"
  }
}

application/xml, text/xml

Sample:
<ResponseExOfMaterialPriceLogEntityWVJGEryt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.WebApi.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.Domain">
    <CreateDate xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">2024-09-21T16:18:28.4123555+08:00</CreateDate>
    <CreateUserId xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">sample string 5</CreateUserId>
    <CreateUserName xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">sample string 6</CreateUserName>
    <Id xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">sample string 4</Id>
    <ModifyDate xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">2024-09-21T16:18:28.4123555+08:00</ModifyDate>
    <ModifyUserId xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">sample string 7</ModifyUserId>
    <ModifyUserName xmlns="http://schemas.datacontract.org/2004/07/ZJ.DataBase.Domain">sample string 8</ModifyUserName>
    <d2p1:LogTime>2024-09-21T16:18:28.4123555+08:00</d2p1:LogTime>
    <d2p1:MaterialId>sample string 1</d2p1:MaterialId>
    <d2p1:Price>3</d2p1:Price>
  </Data>
  <Message>sample string 1</Message>
  <StatusCode>OK</StatusCode>
</ResponseExOfMaterialPriceLogEntityWVJGEryt>