duheng
2024-07-25 713d5218ee2b47c0c92f75c19c49bb7e883cd214
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using SqlSugar;
 
namespace AStation.DAL
{
    /// <summary>
    /// 电力价格
    /// </summary>
    public class ElecPrice : BaseDAL<Entity.ElecPrice>
    {
        public override ConnectionConfig ConnectionConfig
        {
            get { return ConnectionFactory.BuildConnection(); }
        }
    }
}