| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using ShwasherSys.Order;
- namespace ShwasherSys.Order.Dto
- {
- [AutoMapTo(typeof(OrderItem)),AutoMapFrom(typeof(OrderItem))]
- public class OrderItemDto: EntityDto<int>
- {
- public string OrderNo { get; set; }
- public string ProductNo { get; set; }
- public decimal Price { get; set; }
-
- public decimal AfterTaxPrice { get; set; }
- public string CurrencyId { get; set; }
- public decimal Quantity { get; set; }
- public int OrderUnitId { get; set; }
- public DateTime SendDate { get; set; }
- public string IsReport { get; set; }
- public string IsPartSend { get; set; }
- public int? OrderItemStatusId { get; set; }
- public string WareHouse { get; set; }
- public string OrderItemDesc { get; set; }
- public DateTime? TimeCreated { get; set; }
- public DateTime? TimeLastMod { get; set; }
- public string UserIDLastMod { get; set; }
- public string PartNo { get; set; }
- public decimal? ToCnyRate { get; set; }
- public int EmergencyLevel { get; set; }
- //是否删除
- public string IsLock { get; set; }
- public string StandardName { get; set; }
- /// <summary>
- /// 仓库配货完成状态
- /// </summary>
- public int StoreCompleteState { get; set; }
- /// <summary>
- /// 运费
- /// </summary>
- public decimal LogisticsFee { get; set; } = 0;
- /// <summary>
- /// 模具费
- /// </summary>
- public decimal MoldFee { get; set; } = 0;
- /// <summary>
- /// 运费(不含税)
- /// </summary>
- public decimal LogisticsFeeAfterTax { get; set; } = 0;
- /// <summary>
- /// 模具费(不含税)
- /// </summary>
- public decimal MoldFeeAfterTax { get; set; } = 0;
- /// <summary>
- /// 客户订单行号
- /// </summary>
- public string CustomerRowNo { get; set; }
- }
- }
|