24 lines
611 B
C#
24 lines
611 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace cn.sancainet.Resident.health.Entity.XiTong
|
|
{
|
|
public class b_wdlis
|
|
{
|
|
[DisplayName("主键")]
|
|
public string id { get; set; }
|
|
[DisplayName("万达编码")]
|
|
public string wdcode { get; set; }
|
|
[DisplayName("体检表列")]
|
|
public string jktjbcol { get; set; }
|
|
[DisplayName("辅助检查表列")]
|
|
public string jktjfzjcbc { get; set; }
|
|
[DisplayName("名称")]
|
|
public string mc { get; set; }
|
|
|
|
}
|
|
}
|