屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
880 B

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 = "销售出库";
}
}