添加 共赴宁波之春 报名网页
This commit is contained in:
68
20220330_Vote/Vote.Services/Entities/nbzc_person.cs
Normal file
68
20220330_Vote/Vote.Services/Entities/nbzc_person.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Ewide.Core;
|
||||
|
||||
namespace Vote.Services.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 共赴宁波之春-登记人员表
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class nbzc_person : DEntityBase
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 姓名
|
||||
/// </summary>
|
||||
[DisplayName("姓名")]
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 手机号码
|
||||
/// </summary>
|
||||
[DisplayName("手机号码")]
|
||||
public string phone { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 微信号码
|
||||
/// </summary>
|
||||
[DisplayName("微信号码")]
|
||||
public string weixin_number { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 身份证号码
|
||||
/// </summary>
|
||||
[DisplayName("身份证号码")]
|
||||
public string cardno { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 行业
|
||||
/// </summary>
|
||||
[DisplayName("行业")]
|
||||
public string hangye { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 所在地,地址
|
||||
/// </summary>
|
||||
[DisplayName("所在地,地址")]
|
||||
public string address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日期,不固定格式
|
||||
/// </summary>
|
||||
[DisplayName("日期,不固定格式")]
|
||||
public string date { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// x线路
|
||||
/// </summary>
|
||||
[DisplayName("x线路")]
|
||||
public string line { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user