初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoRenthouseCommonImageUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseCommonImageUploadModel : AopObject
{
/// <summary>
/// 文件内容字节数组Base64字符串,最大支持上传5M的文件
/// </summary>
[JsonProperty("file_base")]
public string FileBase { get; set; }
/// <summary>
/// 文件类型 1图片支持jpg、png、jpeg、bmp格式 2合同HTML格式
/// </summary>
[JsonProperty("file_type")]
public string FileType { get; set; }
/// <summary>
/// true|false是否公共读写私密文件使用否如电子合同
/// </summary>
[JsonProperty("is_public")]
public bool IsPublic { get; set; }
}
}