12345678910111213141516171819 |
- using FreeSql.DataAnnotations;
- using System;
- public class Tmp
- {
- public string INPATIENTNO { get; set; }
- public string NAME { get; set; }
- public string zyh { get; set; }
- public string cwh { get; set; }
- public string PARTOFCHECK { get; set; }
- public Tmp(string INPATIENTNO, string NAME, string zyh, string cwh, string PARTOFCHECK)
- {
- this.INPATIENTNO = INPATIENTNO;
- this.NAME = NAME;
- this.zyh = zyh;
- this.cwh = cwh;
- this.PARTOFCHECK = PARTOFCHECK;
- }
- }
|