using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AntOcrGeneralIdentifyModel Data Structure. /// [Serializable] public class AntOcrGeneralIdentifyModel : AopObject { /// /// 图片地址 /// [XmlElement("image")] public string Image { get; set; } /// /// 图片存储类型,url:图片url地址;aftsId:afts文件服务Id /// [XmlElement("type")] public string Type { get; set; } } }