15 lines
378 B
C#
15 lines
378 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public partial class BAS_INNERUSER
|
|
{
|
|
[DisplayName("验证码")]
|
|
[NotMapped]
|
|
[Required(ErrorMessage = "验证码不能为空")]
|
|
public string map_SnCode { get; set; }
|
|
}
|
|
}
|