using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Dfs.WayneChina.SpsDataCourier.Guard
{
public class TradeUpload
{
[Key]
public long Id { get; set; }
///
/// GID of the record.
///
public long Gid { get; set; }
///
/// Operation type, 1 = INSERT, only `insert` is allowed for TransactionInfo.
///
public int Operation { get; set; }
///
/// Status of the operation, 0 = Success, others means Failure.
///
public int Status { get; set; }
///
/// Time stamp of the operation.
///
public DateTime OperationTime { get; set; }
}
}