using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RetailKbcodeCreateVo Data Structure.
///
[Serializable]
public class RetailKbcodeCreateVo : AopObject
{
///
/// 指定码图片上显示的名称,建议使用商户名称
///
[XmlElement("code_tip")]
public string CodeTip { get; set; }
///
/// 销售员信息(只允许数字和字母),建议使用促销员手机号
///
[XmlElement("salesman")]
public string Salesman { get; set; }
}
}