using System.Xml.Serialization;
|
|
|
|
namespace RpcHelper
|
|
{
|
|
public class FeedGoodsSaleHead {
|
|
|
|
private string _ebsid = string.Empty;
|
|
|
|
[XmlElement(ElementName = "EBSID")]
|
|
public string Ebsid {
|
|
get { return _ebsid; }
|
|
set { _ebsid = value; }
|
|
}
|
|
|
|
private string _code = string.Empty;
|
|
|
|
[XmlElement(ElementName = "AccountingUnitCode")]
|
|
public string AccountingUnitCode {
|
|
get { return _code; }
|
|
set { _code = value; }
|
|
}
|
|
|
|
private string _sourceID = string.Empty;
|
|
|
|
[XmlElement(ElementName = "SourceID")]
|
|
public string SourceID {
|
|
get { return _sourceID; }
|
|
set { _sourceID = value; }
|
|
}
|
|
|
|
private string _sourceType = string.Empty;
|
|
|
|
[XmlElement(ElementName = "SourceType")]
|
|
public string SourceType {
|
|
get { return _sourceType; }
|
|
set { _sourceType = value; }
|
|
}
|
|
|
|
|
|
private string _saleDate = string.Empty;
|
|
[XmlElement(ElementName = "SaleDate")]
|
|
public string SaleDate {
|
|
get { return _saleDate; }
|
|
set { _saleDate = value; }
|
|
}
|
|
|
|
private string _outDate = string.Empty;
|
|
[XmlElement(ElementName = "OutDate")]
|
|
public string OutDate {
|
|
get { return _outDate; }
|
|
set { _outDate = value; }
|
|
}
|
|
|
|
private string _breedUnitCode = string.Empty;
|
|
|
|
[XmlElement(ElementName = "BreedUnitCode")]
|
|
public string BreedUnitCode {
|
|
get { return _breedUnitCode; }
|
|
set { _breedUnitCode = value; }
|
|
}
|
|
|
|
|
|
private string _contractID = string.Empty;
|
|
|
|
[XmlElement(ElementName = "ContractID")]
|
|
public string ContractID {
|
|
get { return _contractID; }
|
|
set { _contractID = value; }
|
|
}
|
|
|
|
private string _storeCode = string.Empty;
|
|
|
|
[XmlElement(ElementName = "StoreCode")]
|
|
public string StoreCode {
|
|
get { return _storeCode; }
|
|
set { _storeCode = value; }
|
|
}
|
|
|
|
private string _saleType = string.Empty;
|
|
|
|
[XmlElement(ElementName = "SaleType")]
|
|
public string SaleType {
|
|
get { return _saleType; }
|
|
set { _saleType = value; }
|
|
}
|
|
|
|
private string _staffCode = string.Empty;
|
|
|
|
[XmlElement(ElementName = "StaffCode")]
|
|
public string StaffCode {
|
|
get { return _staffCode; }
|
|
set { _staffCode = value; }
|
|
}
|
|
|
|
private string _remark = string.Empty;
|
|
[XmlElement(ElementName = "Remark")]
|
|
public string Remark {
|
|
get { return _remark; }
|
|
set { _remark = value; }
|
|
}
|
|
|
|
}
|
|
}
|