后道
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using ZR.Model.Business;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ZR.Service.Business.IBusinessService
|
||||
{
|
||||
/// <summary>
|
||||
/// 质量后道外箱标签打印配置
|
||||
service接口
|
||||
/// </summary>
|
||||
public interface IQcBackendBaseOutpackageService : IBaseService<QcBackendBaseOutpackage>
|
||||
{
|
||||
PagedInfo<QcBackendBaseOutpackageDto> GetList(QcBackendBaseOutpackageQueryDto parm);
|
||||
|
||||
QcBackendBaseOutpackage GetInfo(int Id);
|
||||
|
||||
QcBackendBaseOutpackage AddQcBackendBaseOutpackage(QcBackendBaseOutpackage parm);
|
||||
|
||||
int UpdateQcBackendBaseOutpackage(QcBackendBaseOutpackage parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user