using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Report.Entity { public class piclog { /// /// 头像 /// public string photo { get; set; } /// /// 首页 /// public string firstPage { get; set; } /// /// 页眉 /// public string pageHeader { get; set; } /// /// 页脚 /// public string pageFooter { get; set; } /// /// 结果签章 /// public string resultSign { get; set; } /// /// 公章 /// public string orgSign { get; set; } /// /// 扩展1 /// public string picExtOne { get; set; } /// /// 扩展2 /// public string picExtTwo { get; set; } /// /// 扩展3 /// public string picExtThree { get; set; } /// /// 扩展4 /// public string picExtFour { get; set; } /// /// 扩展5 /// public string picExtFive { get; set; } /// /// 扩展6 /// public string picExtSix { get; set; } /// /// 扩展7 /// public string picExtSeven { get; set; } /// /// 扩展8 /// public string picExtEight { get; set; } /// /// 扩展9 /// public string picExtNine { get; set; } /// /// 扩展10 /// public string picExtTen { get; set; } } }