公告板
版本库
filestore
活动
搜索
登录
main
/
chuanyin-group-project
川印集团项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
菜单 行政管理=》行政管理=》问题反馈 /Pages/business/DeliverPlanPaicheList.aspx 06
username@email.com
2025-05-09
66beb245e516809514642c00922f0339bf760518
[chuanyin-group-project.git]
/
CY_ECommercePlatform
/
CY.IDAL
/
OA
/
IOA_PropertyRecordDAL.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
/// <summary>
///行政物品申请记录-数据库操作接口
/// </summary>
public interface IOA_PropertyRecordDAL : ICommonDAL, IPaging<OA_PropertyRecord>, IGetAllModel<OA_PropertyRecord>
{
/// <summary>
/// 根据编号获得信息
/// </summary>
/// <param name="Keyid">编号</param>
/// <returns></returns>
OA_PropertyRecord GetModelByKeyid(int? Keyid);
/// <summary>
/// 分页查询
/// </summary>
/// <param name="pagination"></param>
/// <returns></returns>
IEnumerable<Model.OA_PropertyRecord> SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _MemberId, Guid _AddId, int? _CateId, int? _PropertyId, int? _Status, string _AddName, DateTime? _BeginAddTime, DateTime? _EndAddTime);
}
}