using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechBlockchainDefinBaseFileSubmitModel Data Structure. /// [Serializable] public class AnttechBlockchainDefinBaseFileSubmitModel : AopObject { /// /// base64编码的业务参数 /// [XmlElement("encoded_biz_param")] public string EncodedBizParam { get; set; } /// /// 系统参数 /// [XmlElement("sys_param")] public SystemParam SysParam { get; set; } } }