GoodsDryPriceModel.cs 389 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Delivery
  6. {
  7. public class GoodsDryPriceModel
  8. {
  9. public string PriceMoveType { get; set; }
  10. public uint PriceMoveID { get; set; }
  11. public decimal PriceMoveValue { get; set; }
  12. public string PriceMoveDesc { get; set; }
  13. }
  14. }