123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XYY.Core.Standard;
- using XYY.Model.Standard.Finance;
- namespace XYY.Model.Standard.Enums
- {
- public enum SettlementAdjustmentMode
- {
- 每票元 = 1,
- 每500G元 = 2,
- 比例 = 3
- }
- public class Logistics_ExpressSettlementAdjustmentDetail : BaseEntity
- {
- /// <summary>
- /// 分区
- /// </summary>
- public string Zone
- {
- get; set;
- }
- public bool IsAll
- {
- get; set;
- }
- public SettlementAdjustmentMode Mode
- {
- get; set;
- }
- public double Value
- {
- get; set;
- }
- public int AdjustmentId
- {
- get; set;
- }
- }
- public class Logistics_ExpressSettlementAdjustmentDto
- {
- public int ExpressId
- {
- get; set;
- }
- public int[] CustomerId
- {
- get; set;
- }
- public List<Logistics_ExpressSettlementAdjustmentDetail> Details
- {
- get; set;
- }
- }
- public class Logistics_ExpressSettlementAdjustment : BaseEntity
- {
- public string CustomerId
- {
- get; set;
- }
- public int ExpressId
- {
- get; set;
- }
- public DateTime AdjTime
- {
- get; set;
- }
- public string SettlementAdjustmentContent
- {
- get; set;
- }
- }
- public class GenerateExpressFeeFileDto
- {
- public Logistics_ExpressSettlementAdjustmentDto adjustmentDto { get; set; }
- public IEnumerable<View_Quotation> detail { get; set; }
- }
- }
|