duheng
2025-03-28 b825d70578b0ddf6d479569887c194f919795dad
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.ComponentModel.DataAnnotations;
 
namespace PBS.WinFrmUI.Hydro.Dispatch.Model
{
    public enum eAnaSchemeSortType
    {
        [Display(Name = "功率")]
        功率 = 0,
 
        [Display(Name = "流量差值")]
        流量差值 = 1
    }
}