wanshenmean
9 小时以前 ad64840cc04dac2278ca02f22ddc02b1a218e9cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IBasicService
{
    /// <summary>
    /// 托盘编码信息服务接口
    /// </summary>
    public interface IPalletCodeInfoService : IService<Dt_PalletCodeInfo>
    {
        /// <summary>
        /// 获取托盘编码信息仓储接口
        /// </summary>
        IRepository<Dt_PalletCodeInfo> Repository { get; }
    }
}