You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
803 B
26 lines
803 B
using PEIS.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PEIS.Entity
|
|
{
|
|
public partial class TwoCancer : ObjectData
|
|
{
|
|
public override String TableName => "v_TwoCancer";
|
|
public Int64 ID { get; set; }
|
|
public DateTime ExamDate { get; set; }
|
|
public string Name { get; set; }
|
|
public string Sex { get; set; }
|
|
public string Age { get; set; }
|
|
public string Nation { get; set; }
|
|
public string CardNo { get; set; }
|
|
public DateTime Birthday { get; set; }
|
|
public string Tel1 { get; set; }
|
|
public string Flag { get; set; }
|
|
public string Summary { get; set; }
|
|
public string Hpv { get; set; }
|
|
public string Summary2 { get; set; }
|
|
}
|
|
}
|
|
|