using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DataCapture_MA.Entity
|
{
|
public partial class HttpRequestRecord
|
{
|
public string Id { get; set; }
|
|
public string CargoNo { get; set; }
|
|
public string SerialNumber { get; set; }
|
|
public string OrderNo { get; set; }
|
|
public string SalverCode { get; set; }
|
|
public string key1 { get; set; }
|
|
public string key2 { get; set; }
|
|
public int? direction { get; set; }
|
|
public string fullFun { get; set; }
|
|
public string host { get; set; }
|
|
public string url { get; set; }
|
|
public string param { get; set; }
|
|
public string retResult { get; set; }
|
|
public string remark { get; set; }
|
|
public string happenHost { get; set; }
|
|
public string CreateTime { get; set; }
|
|
public bool? result { get; set; }
|
}
|
}
|