用asp.net 生成一个patient实体类 包含ZYH BLH MZH HZXM
时间: 2023-05-10 15:55:10 浏览: 159
asp.net实体类生成器
3星 · 编辑精心推荐
好的,以下是生成一个patient实体类的代码:
```csharp
public class Patient
{
public string ZYH { get; set; }
public string BLH { get; set; }
public string MZH { get; set; }
public string HZXM { get; set; }
}
```
你可以在ASP.NET中使用Visual Studio创建一个新的类文件,将上述代码复制到该文件中,然后保存即可。
阅读全文