123456789101112131415161718192021222324252627 |
- using SMP.Model.Enums;
- using SMP.Model.Finance;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SMP.Model.Finance
- {
- public class View_ServiceBillResultOrderInfo: Logistisc_Order
- {
- public string BillName { get; set; }
- public NumberType NumberType { get; set; }
- /// <summary>
- /// 账单里的单号
- /// </summary>
- public string BillNumber { get; set; }
- public string BillTypeCode { get; set; }
- public decimal BillData { get; set; }
- public ServiceBillDataType DataType { get; set; }
- public string BillDataName { get; set; }
- public string BillCurrency { get; set; }
- public DateTime? BillTime { get; set; }
- public int ServiceProviderId { get; set; }
- }
- }
|