28 lines
1.3 KiB
C#
28 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PCRobot.Entitys.Enterprise
|
|
{
|
|
/// <summary>
|
|
/// 文件Cdn信息
|
|
/// </summary>
|
|
public class FileC2cCdnInfo
|
|
{
|
|
//{"data":{"error_code":0,"file_aes_key":"34336366636637353562383135383465","file_id":"3072020102046b30690201000204f4287e6802030f59b102049317fa710204625050f7042d4e45574944315f6634323837653638393331376661373136323530353133375f3136343934333037373633303002010002030107d0041000fcd55383fba8807e1510efed058c400201010201000400","file_key":"1649430840411","file_md5":"00fcd55383fba8807e1510efed058c40","file_path":"D:\\项目\\秒单客项目\\返利机器人\\3.0\\yz_client\\yz_client\\yz_client\\bin\\Debug\\Cache\\Image\\3c78ef60613e43f1b5a369d528ce50b6.jpg","file_size":67523,"file_type":1,"image_height":960,"image_width":960},"type":11115}
|
|
public int error_code { get; set; }
|
|
public string file_aes_key { get; set; }
|
|
public string file_id { get; set; }
|
|
public string file_key { get; set; }
|
|
public string file_md5 { get; set; }
|
|
public string file_path { get; set; }
|
|
public int file_size { get; set; }
|
|
public int file_type { get; set; }
|
|
public int image_height { get; set; }
|
|
public int image_width { get; set; }
|
|
|
|
}
|
|
}
|