1234567891011121314151617181920212223242526272829303132333435 |
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispRecordItemCreateViewModel : BaseViewModel
- {
-
-
-
- public Guid C_RecordCode { get; set; }
-
-
-
- public Guid C_ContentCode { get; set; }
-
-
-
- public string C_InspectionContent { get; set; }
- public string C_Remark { get; set; }
- public string C_Status { get; set; }
-
-
-
-
-
-
-
- public IList<string> FilePaths { get; set; }
- }
- }
|