BaoKai_202508_Wms_Jingwang_.../WMS.Model/ERP/库存调整明细表ChangeStockDetailsModel.cs
2025-08-24 21:52:42 +08:00

76 lines
2.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**********************
* 类名库存调整单明细Model
* 作者:魏晓欣
* 时间2013-09-16
**********************/
using System;
using System.Text;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.ComponentModel;
namespace PosErp.Model
{
[Serializable()]
public class ChangeStockDetailsModel
{
[DisplayName("自增ID")]
public virtual string ID { get; set; }
[DisplayName("调整批次号")]
public virtual string ChangeID { get; set; }
[DisplayName("商品编号")]
public virtual string GoodsID { get; set; }
[DisplayName("单位")]
public virtual string Unit { get; set; }
[DisplayName("单位")]
public virtual string UnitName { get; set; }
[DisplayName("调整方式")]
public virtual string ChangeType { get; set; }
[DisplayName("调整数量")]
public virtual decimal ChangeAmount { get; set; }
[DisplayName("库存数量")]
public virtual decimal StockAmount { get; set; }
[DisplayName("调整时进价")]
public virtual decimal InPrice { get; set; }
[DisplayName("成本总计")]
public virtual decimal InMoney { get; set; }
[DisplayName("商品类型")]
public virtual string TypeName { get; set; }
[DisplayName("商品名称")]
public virtual string GoodsName { get; set; }
[DisplayName("售价")]
public virtual decimal StandardPrice { get; set; }
[DisplayName("售价总计")]
public virtual decimal StandardMoney { get; set; }
[DisplayName("调整原因")]//盘点产生的
public virtual string ChangeResult { get; set; }
[DisplayName("入库单号")]
public virtual string InNoteID { get; set; }
[DisplayName("生产日期")]//退货单中的生产日期
public virtual DateTime ProductionDate { get; set; }
[DisplayName("同步状态")]
public virtual string SyncStatus { get; set; }
[DisplayName("店铺编号")]
public virtual string ShopId { get; set; }
}
}