using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace Ropin.Inspection.Model.ViewModel.LGS { public class ImageLibraryModel : BaseViewModel { public string C_Id { get; set; } public string C_Name { get; set; } public int? I_Sort { get; set; } [Required] public string C_Type { get; set; } public string C_ImagePath { get; set; } public string C_Remark { get; set; } public string C_Status { get; set; } /// /// 文件base64字符串 /// public string base64Image { get; set; } /// /// 文件扩展名 /// public string fileExName { get; set; } } public class ImageLibraryInput: BaseSearchModel { public string? C_Type { get; set; } public string? C_Status { get; set; } } }