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.

43 lines
1.3 KiB

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;
}
}