42 lines
966 B
C#
42 lines
966 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_WeChatApplet.Commons.Dto.ClientSide
|
|
{
|
|
/// <summary>
|
|
/// 学校账号预约
|
|
/// </summary>
|
|
public class SchoolAccountApplicationDto
|
|
{
|
|
/// <summary>
|
|
///学校名称
|
|
/// </summary>
|
|
public string SchoolName { get; set; }
|
|
|
|
/// <summary>
|
|
///学校地址
|
|
/// </summary>
|
|
public string SchoolAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户姓名
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public string PhoneNo { get; set; }
|
|
|
|
/// <summary>
|
|
///备注
|
|
/// </summary>
|
|
public string Remarks { get; set; }
|
|
}
|
|
}
|