using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ProdRelationVO Data Structure.
///
[Serializable]
public class ProdRelationVO : AopObject
{
///
/// 数量
///
[XmlElement("num")]
public long Num { get; set; }
///
/// 数量类型
///
[XmlElement("num_type")]
public string NumType { get; set; }
///
/// 产品码
///
[XmlElement("prod_code")]
public string ProdCode { get; set; }
///
/// 关联的产品编码
///
[XmlElement("prod_rel_code")]
public string ProdRelCode { get; set; }
///
/// 关联的产品名称
///
[XmlElement("prod_rel_name")]
public string ProdRelName { get; set; }
///
/// 产品关联类型
///
[XmlElement("prod_rel_type")]
public string ProdRelType { get; set; }
///
/// 关联的产品版本
///
[XmlElement("prod_rel_version")]
public string ProdRelVersion { get; set; }
///
/// 产品版本
///
[XmlElement("prod_version")]
public string ProdVersion { get; set; }
///
/// 产品关联子类型
///
[XmlElement("sub_prod_rel_type")]
public string SubProdRelType { get; set; }
}
}