License.cs
421 Bytes
using System.ComponentModel.DataAnnotations;
using TableAttribute = System.ComponentModel.DataAnnotations.Schema.TableAttribute;
namespace HHECS.Model.Entities
{
[Table("license")]
public class License : BaseEntity<int>
{
/// <summary>
/// 加密后的权限key
/// </summary>
[Required]
[MaxLength(2000)]
public string LinceseContent { get; set; }
}
}