12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- public class SecMacModel
- {
- public string ID { get; set; }
- public string FCode { get; set; }
- public string FName { get; set; }
- public string Remark { get; set; }
- public string reccode { get; set; }
- public DateTime? rectime { get; set; }
- public string modcode { get; set; }
- public DateTime? modtime { get; set; }
- public string TPCode { get; set; }
- }
- }
|