123456789101112131415161718192021222324252627282930313233 |
- 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; }
- /// <summary>
- /// GID of the record.
- /// </summary>
- public long Gid { get; set; }
- /// <summary>
- /// Operation type, 1 = INSERT, only `insert` is allowed for TransactionInfo.
- /// </summary>
- public int Operation { get; set; }
- /// <summary>
- /// Status of the operation, 0 = Success, others means Failure.
- /// </summary>
- public int Status { get; set; }
- /// <summary>
- /// Time stamp of the operation.
- /// </summary>
- public DateTime OperationTime { get; set; }
- }
- }
|