using Forks.EnterpriseServices.DomainObjects2;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace B3DealerClient.BO
|
|
{
|
|
[MapToTable("B3DealerClient_CarcassInStore_Receive")]
|
|
[KeyField("ID", KeyGenType.identity)]
|
|
public class CarcassInStore_Receive : NotificationObject
|
|
{
|
|
private long mID;
|
|
[JsonIgnore]
|
|
public long ID
|
|
{
|
|
get { return mID; }
|
|
set
|
|
{
|
|
mID = value;
|
|
RaisePropertyChanged("ID");
|
|
}
|
|
}
|
|
|
|
private long mDetailID;
|
|
public long DetailID
|
|
{
|
|
get { return mDetailID; }
|
|
set
|
|
{
|
|
mDetailID = value;
|
|
RaisePropertyChanged("DetailID");
|
|
}
|
|
}
|
|
|
|
private long mMainID;
|
|
public long MainID
|
|
{
|
|
get { return mMainID; }
|
|
set
|
|
{
|
|
mMainID = value;
|
|
RaisePropertyChanged("MainID");
|
|
}
|
|
}
|
|
|
|
private string mGoods_Name;
|
|
public string Goods_Name
|
|
{
|
|
get { return mGoods_Name; }
|
|
set
|
|
{
|
|
mGoods_Name = value;
|
|
RaisePropertyChanged("Goods_Name");
|
|
}
|
|
}
|
|
|
|
private decimal mWeight;
|
|
public decimal Weight
|
|
{
|
|
get { return mWeight; }
|
|
set
|
|
{
|
|
mWeight = value;
|
|
RaisePropertyChanged("Weight");
|
|
}
|
|
}
|
|
|
|
private decimal mDiscont;
|
|
public decimal Discont
|
|
{
|
|
get { return mDiscont; }
|
|
set
|
|
{
|
|
mDiscont = value;
|
|
RaisePropertyChanged("Discont");
|
|
}
|
|
}
|
|
|
|
private decimal mNetWeight;
|
|
public decimal NetWeight
|
|
{
|
|
get { return mNetWeight; }
|
|
set
|
|
{
|
|
mNetWeight = value;
|
|
RaisePropertyChanged("NetWeight");
|
|
}
|
|
}
|
|
|
|
private decimal mPics;
|
|
public decimal Pics
|
|
{
|
|
get { return mPics; }
|
|
set
|
|
{
|
|
mPics = value;
|
|
RaisePropertyChanged("Pics");
|
|
}
|
|
}
|
|
|
|
private DateTime mDate = DateTime.Now;
|
|
public DateTime Date
|
|
{
|
|
get { return mDate; }
|
|
set
|
|
{
|
|
mDate = value;
|
|
RaisePropertyChanged("Date");
|
|
}
|
|
}
|
|
|
|
private bool mSelected;
|
|
[NonDmoProperty]
|
|
public bool Selected
|
|
{
|
|
get { return mSelected; }
|
|
set
|
|
{
|
|
mSelected = value;
|
|
RaisePropertyChanged("Selected");
|
|
}
|
|
}
|
|
}
|
|
}
|