19 lines
479 B
C#
19 lines
479 B
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;
|
|
|
|
namespace Church.Net.Entity
|
|
{
|
|
public class Religion
|
|
{
|
|
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int ReligionId { get; set; }
|
|
[Display(Name = "宗教信仰")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|