19 lines
367 B
C#
19 lines
367 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
/// <summary>
|
|
/// 是否同业
|
|
/// </summary>
|
|
public enum SamePeerEnum
|
|
{
|
|
[Description("同业")]
|
|
[Display(Name = "同业")]
|
|
IsSamePeer = 0,
|
|
|
|
[Description("非同业")]
|
|
[Display(Name = "非同业")]
|
|
NotSamePeer = 1,
|
|
}
|
|
}
|