配置中心初步获取值测试通过
智能石头 authored at 2021-01-20 10:08:23
576.00 B
Stardust
using System;
using System.Collections.Generic;
using NewLife.Cube;
using NewLife.Web;
using Stardust.Data.Configs;

namespace Stardust.Web.Areas.Configs.Controllers
{
    [ConfigsArea]
    public class AppQuoteController : EntityController<AppQuote>
    {
        //protected override IEnumerable<AppRule> Search(Pager p)
        //{
        //    var appId = p["appId"].ToInt(-1);

        //    var start = p["dtStart"].ToDateTime();
        //    var end = p["dtEnd"].ToDateTime();

        //    return AppRule.Search(appId, start, end, p["Q"], p);
        //}
    }
}