using System;
|
|
using BO.BO;
|
|
|
|
namespace TrunksIousOutInStore.LocalSyncBO
|
|
{
|
|
|
|
[Serializable]
|
|
public class TrunksIousOutInStoreRecord: LocalSyncBase
|
|
{
|
|
public string BarCode { get; set; }
|
|
public long? Goods_ID { get; set; }
|
|
public string Goods_Name { get; set; }
|
|
|
|
private int mNumber = 1;
|
|
public int Number
|
|
{
|
|
get { return mNumber; }
|
|
set { mNumber = value; }
|
|
}
|
|
|
|
public decimal? Weight { get; set; }
|
|
|
|
public string CarcassStatus{ get; set; }// 胴体状态
|
|
}
|
|
|
|
public class CarcassStatus
|
|
{
|
|
public static readonly string 胴体称重 = "胴体称重";
|
|
public static readonly string 入预冷库 = "入预冷库";
|
|
public static readonly string 分割领用 = "分割领用";
|
|
public static readonly string 入销售库 = "入销售库";
|
|
public static readonly string 销售出库 = "销售出库";
|
|
|
|
}
|
|
}
|