- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- public class GoodsDryPriceModel
- {
- public string PriceMoveType { get; set; }
- public uint PriceMoveID { get; set; }
- public decimal PriceMoveValue { get; set; }
- public string PriceMoveDesc { get; set; }
- }
- }
|