You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
21 lines
457 B
3 years ago
|
using System;
|
||
|
using PetaPoco;
|
||
|
|
||
|
using Pingchuan.BeijingSafeguard.DAL;
|
||
|
using Pingchuan.BeijingSafeguard.Model;
|
||
|
|
||
|
namespace Pingchuan.BeijingSafeguard.BLL
|
||
|
{
|
||
|
public class ConfigBLL
|
||
|
{
|
||
|
public static int Update(Config config)
|
||
|
{
|
||
|
return ConfigDAL.Update(config);
|
||
|
}
|
||
|
|
||
|
public static Page<Config> Query(int pageIndex, int pageSize)
|
||
|
{
|
||
|
return ConfigDAL.Query(pageIndex, pageSize);
|
||
|
}
|
||
|
}
|
||
|
}
|