12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Guard
- {
- public class RechargeUpload
- {
- [Key]
- public long Id { get; set; }
-
-
-
- public long Gid { get; set; }
-
-
-
- public string AccountId { get; set; }
-
-
-
- public string CardNo { get; set; }
-
-
-
- public int Operation { get; set; }
-
-
-
- public int Status { get; set; }
-
-
-
- public DateTime OperationTime { get; set; }
- }
- }
|