ningshuxia
2025-04-16 a67da735b33be01b24845ce03ae7551cf55ddbbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.ComponentModel.DataAnnotations;
 
namespace IStation.Model
{
    /// <summary>
    /// 来源类型
    /// </summary>
    public enum eSourceType
    {
        [Display(Name = "对接")]
        Docking = 0,
 
        [Display(Name = "分析")]
        Analyse = 1,
 
        [Display(Name = "录入")]
        Input = 2,
 
    }
}