ningshuxia
2023-02-24 1e4b358de58e36bfbf692ab2538ff9e7d60fd025
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.IDAL
{
    /// <summary>
    /// 电力价格
    /// </summary>
    public interface IElecPrice<T> : IProjectDAL_Cover<T> where T : Entity.ElecPrice, new()
    {
 
    }
}