1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TbdmCodeSearchModel : BaseSearchModel
- {
- public string C_MainCode { get; set; }
- public string C_Name { get; set; }
- public string C_Code { get; set; }
- public string C_Value { get; set; }
- public string C_Status { get; set; }
- }
- }
|