12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.KxsMain
- {
- public partial class FluxProfitDetail
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public int MerUserType { get; set; }
- public int TopUserId { get; set; }
- public int BrandId { get; set; }
- public string Remark { get; set; }
- public string PosType { get; set; }
- public decimal FluxProfitAmt { get; set; }
- public string FluxEndDate { get; set; }
- public string FluxStartDate { get; set; }
- public decimal FluxFeeAmt { get; set; }
- public decimal TradeAmt { get; set; }
- public string TradeOrderNo { get; set; }
- public string FluxOrderNo { get; set; }
- public int ProfitType { get; set; }
- public string SnNo { get; set; }
- public string MerNo { get; set; }
- public int MerchantUserId { get; set; }
- public int MerchantId { get; set; }
- public int UserId { get; set; }
- public string TradeMonth { get; set; }
- public string TradeTime { get; set; }
- public string TradeDate { get; set; }
- public string RecordNo { get; set; }
- }
- }
|