123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main
- {
- public partial class ProfitRecordForAgent
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string TradeMonth { get; set; }
- public decimal TradeAmount { get; set; }
- public string Remark { get; set; }
- public int BrandId { get; set; }
- public decimal ProfitAmount { get; set; }
- public int UserId { get; set; }
- }
- }
|