1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel.MTN
- {
- public class DevOpsPlanDeviceModel
- {
- public string CId { get; set; }
- [Required]
- public string CDevOpsPlanCode { get; set; }
- public string CSpotCode { get; set; }
- [Required]
- public string CDevStoreCode { get; set; }
- public List<string> cSpotCodes { get; set; }
- public string CRemark { get; set; }
- public bool IIsDel { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string DevStoreName { get; set; }
- public string SpotName { get; set; }
- public string Url { get; set; }
- public string CNumberCode { get; set; }
- public bool IsConfig { get; set; }
- }
- public class DevOpsPlanDeviceGroupModel
- {
- public string CDevStoreCode { get; set; }
- public string DevStoreName { get; set; }
- public string CNumberCode { get; set; }
- public string Url { get; set; }
- public List<SpotGroupModel> Spots { get; set;}
- }
- public class SpotGroupModel
- {
- public string CSpotCode { get; set; }
- public string CName { get; set; }
- }
- public class DevOpsPlanDeviceInput
- {
- }
- }
|