19 lines
472 B
C#
19 lines
472 B
C#
using RIZO.Mall.Model;
|
|
using RIZO.Mall.Model.Dto;
|
|
|
|
namespace RIZO.Mall.Service.IService
|
|
{
|
|
/// <summary>
|
|
/// 规格模板service接口
|
|
/// </summary>
|
|
public interface ISpecTemplateService : IBaseService<SpecTemplate>
|
|
{
|
|
PagedInfo<SpecTemplateDto> GetList(SpecTemplateQueryDto parm);
|
|
|
|
SpecTemplate GetInfo(long Id);
|
|
|
|
SpecTemplate AddMmsSpecTemplate(SpecTemplate parm);
|
|
int UpdateMmsSpecTemplate(SpecTemplate parm);
|
|
}
|
|
}
|