12345678910111213141516171819202122232425262728 |
- 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;
- namespace Ropin.Inspection.Model.ViewModel.MTN
- {
- public class DevOpsPlanContentModel
- {
- public string CId { get; set; }
- [Required]
- public string CDevOpsPlanDeviceCode { get; set; }
- [Required]
- public string CSpotCode { get; set; }
- public string CDevOpsContentCode { get; set; }
- public List<string > CDevOpsContentCodes { get; set; }
- public bool? ISort { get; set; }
- public string CRemark { get; set; }
- public bool IIsDel { get; set; }
- }
- public class DevOpsPlanDeviceContentInput
- {
- }
- }
|