1234567891011121314151617181920212223 |
- using SMP.Model.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SMP.Model.Finance
- {
- public class View_ChannelSpreadLogicDetail
- {
- public int ChannelId { get; set; }
- public string ThirdPartyUniqueId { get; set; }
- public int SpreadlogicId { get; set; }
- public int SpreadlogicDetailId { get; set; }
- public ApportionMethodEnum ApportionMethod { get; set; }
- public int ExpenseId { get; set; }
-
- public int ExpenseItemId { get; set; }
- public int ServiceProviderId { get; set; }
- }
- }
|