1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /*
| *代码由框架生成,任何更改都可能导致被代码生成器覆盖
| *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹IBase_ware_locationRepository编写接口
| */
| using WIDESEA_Core.Extensions.AutofacManager;
| using WIDESEA_Core.BaseProvider;
| using WIDESEA_Entity.DomainModels;
|
| namespace WIDESEA_Services.IRepositories
| {
| public partial interface Ibase_ware_locationRepository : IDependency,IRepository<base_ware_location>
| {
| }
| }
|
|