You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.4 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.DAO
{
/// <summary>
/// Mes接口请求记录
/// </summary>
[SugarTable("Record_MesWebServiceRequest")]
public class RecordMesWebServiceRequest
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public string id {get;set;}
[SugarColumn(ColumnName = "machineId")]
public string machineId {get;set; }
[SugarColumn(ColumnName = "interfaceType")]
public string interfaceType {get;set;}
[SugarColumn(ColumnName = "requestParam")]
public string requestParam {get;set;}
[SugarColumn(ColumnName = "requestTime")]
public string requestTime {get;set;}
[SugarColumn(ColumnName = "requestState")]
public int requestState {get;set;}
[SugarColumn(ColumnName = "requestMessage")]
public string requestMessage {get;set;}
[SugarColumn(ColumnName = "responseCode")]
public int responseCode {get;set;}
[SugarColumn(ColumnName = "responseMessage")]
public string responseMessage {get;set;}
[SugarColumn(ColumnName = "responseJson")]
public string responseJson {get;set;}
[SugarColumn(IsIgnore = true)]
public string responseResult { get; set; }
}
}