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.
41 lines
1.1 KiB
41 lines
1.1 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.BLL;
|
||
|
using QMAPP.Entity;
|
||
|
using QMAPP.MD.Entity;
|
||
|
using QMFrameWork.Log;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMAPP.MD.DAL;
|
||
|
|
||
|
namespace QMAPP.MD.BLL
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:配置明细表
|
||
|
/// 作 者:周晓东
|
||
|
/// 编写日期:20180705
|
||
|
/// </summary>
|
||
|
public class ConfigDetailBLL : BaseBLL
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取一级-first
|
||
|
/// </summary>
|
||
|
/// <param name="condition">获取条件</param>
|
||
|
/// <returns>用户信息列表</returns>
|
||
|
public List<ConfigDetail> GetAllList(string MainTypeCode)
|
||
|
{
|
||
|
return new ConfigDetailDAL().GetAllList(MainTypeCode);
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 获取二级-second
|
||
|
/// </summary>
|
||
|
/// <param name="condition">获取条件</param>
|
||
|
/// <returns>用户信息列表</returns>
|
||
|
public List<ConfigDetail> GetSecondList(string MainTypeCode, string PID)
|
||
|
{
|
||
|
return new ConfigDetailDAL().GetSecondList(MainTypeCode,PID);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|