using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ProdLORelationVO Data Structure.
///
[Serializable]
public class ProdLORelationVO : AopObject
{
///
/// 区域编码
///
[XmlElement("lo_code")]
public string LoCode { get; set; }
///
/// 区域类型
///
[XmlElement("lo_type")]
public string LoType { get; set; }
///
/// 产品码
///
[XmlElement("prod_code")]
public string ProdCode { get; set; }
///
/// 产品版本
///
[XmlElement("prod_version")]
public string ProdVersion { get; set; }
}
}