1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TsecRecordCreateViewModel : BaseViewModel
- {
- public Guid C_SpotCode { get; set; }
- public string C_SecurityContent{ get; set; }
- public string C_Remark { get; set; }
- public IEnumerable<TsecRecordItemCreateViewModel> TispRecordItemList { get; set; }
- }
- }
|