123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
-
-
-
- public class TispContentViewModel : BaseViewModel
- {
- private string inspectionContent;
- public Guid C_ID { get; set; }
-
- public string C_Name
- {
- get { return this.inspectionContent; }
- set
- {
- this.inspectionContent = value;
- }
- }
-
-
-
- public List<Option> InspectionContentoptions
- {
- get
- {
- return this.GetInspectionContentoptions(this.inspectionContent) ;
- }
- }
- public string C_AlarmLevel { get; set; }
- public string C_Remark { get; set; }
- public string C_StoreCode { get; set; }
- public string C_Number { get; set; }
-
-
- public string D_CreateOn { get; set; }
-
-
- public string C_Status { get; set; }
- public int? I_Sort { get; set; }
- }
- }
|