1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class WifiTradeRecord
- {
- public int Id { get; set; }
- public int Status { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string Remark { get; set; }
- public int BrandId { get; set; }
- public decimal TradeAmount { get; set; }
- public string SnNo { get; set; }
- }
- }
|