12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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; }
- /// <summary>
- /// 文件base64字符串
- /// </summary>
- public string base64Image { get; set; }
- /// <summary>
- /// 文件扩展名
- /// </summary>
- public string fileExName { get; set; }
- }
- public class ImageLibraryInput: BaseSearchModel
- {
- public string? C_Type { get; set; }
- public string? C_Status { get; set; }
- }
- }
|