| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model
- {
- public class DeliveryGoodsInfoModel
- {
- public uint DeliveryGoodsID { get; set; }
- public string DeliveryGoodsCode { get; set; }
- public string DeliveryGoodsName { get; set; }
- public string GoodsUnit { get; set; }
- public uint StandardQty { get; set; }
- public double StandardQtyRange { get; set; }
- public uint AuditFlag { get; set; }
- public List<PriceMoveModel> DeliveryGoodsPMList { get; set; }
- }
- }
|