You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Entity;
|
|
|
|
namespace VOL.Entity.DomainModels
|
|
{
|
|
public class ApiSys_UserInput
|
|
{
|
|
/// <summary>
|
|
///帐号
|
|
/// </summary>
|
|
[Display(Name ="帐号")]
|
|
[MaxLength(6)]
|
|
[Column(TypeName="varchar(6)")]
|
|
[Editable(true)]
|
|
[Required(AllowEmptyStrings=false)]
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
///密码
|
|
/// </summary>
|
|
[Display(Name ="密码")]
|
|
[MaxLength(150)]
|
|
[Column(TypeName="varchar(150)")]
|
|
[Required(AllowEmptyStrings=false)]
|
|
public string UserPwd { get; set; }
|
|
|
|
/// <summary>
|
|
///手机号
|
|
/// </summary>
|
|
[Display(Name ="手机号")]
|
|
[MaxLength(50)]
|
|
[Column(TypeName="varchar(50)")]
|
|
[Required(AllowEmptyStrings=false)]
|
|
public string PhoneNo { get; set; }
|
|
|
|
|
|
}
|
|
} |