11 lines
299 B
C#
11 lines
299 B
C#
using NPP.SmartSchedue.Api.Contracts.Domain.Work;
|
|
using ZhonTai.Admin.Core.Repositories;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts;
|
|
|
|
/// <summary>
|
|
/// 工序组关联关系仓储接口
|
|
/// </summary>
|
|
public interface IProcessGroupRelationRepository : IRepositoryBase<ProcessGroupRelationEntity>
|
|
{
|
|
} |