using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class WeightInfo : Base,INotifyPropertyChanged
|
|
{
|
|
public override string TableName { get { return TableNames.称重记录; } }
|
|
public decimal Weight { get; set; }
|
|
public decimal? SubWeight { get; set; }
|
|
public decimal? NetWeight { get; set; }
|
|
public decimal? SecondNum { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public long Goods_ID { get; set; }
|
|
public string ProductBatch { get; set; }
|
|
public long? Output_ID { get; set; }
|
|
private bool mIsSelected = false;
|
|
private bool IsSend { get; set; }
|
|
public string Goods_Name { get; set; }
|
|
public string Goods_Spec { get; set; }
|
|
public int Number { get; set; }
|
|
public long? ButcDetailID { get; set; }
|
|
public int? DetailSequence { get; set; }
|
|
public decimal? ProductNum { get; set; }
|
|
public bool IsSelected
|
|
{
|
|
get { return mIsSelected; }
|
|
set
|
|
{
|
|
mIsSelected = value;
|
|
if (PropertyChanged != null) {
|
|
PropertyChanged(this, new PropertyChangedEventArgs("IsSelected"));
|
|
}
|
|
}
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
}
|
|
}
|