123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
-
-
-
- public class CheckBoxs
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int Diid { get; set; }
-
-
-
- public string cbType { get; set; }
-
-
-
- public string cbValues { get; set; }
-
-
-
- public int Oper { get; set; }
-
-
-
- public string OPDate { get; set; }
-
-
-
- public int Isdel { get; set; }
- }
- }
|