26 lines
600 B
C#
26 lines
600 B
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.Business;
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.dc.Dto;
|
|
using ZR.Model.dc;
|
|
|
|
namespace ZR.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 机器人涂装数据采集表service接口
|
|
/// </summary>
|
|
public interface IFnproductionService : IBaseService<Fnproduction>
|
|
{
|
|
PagedInfo<FnproductionDto> GetList(FnproductionQueryDto parm);
|
|
|
|
Fnproduction GetInfo(int Id);
|
|
|
|
Fnproduction AddFnproduction(Fnproduction parm);
|
|
|
|
int UpdateFnproduction(Fnproduction parm);
|
|
|
|
}
|
|
}
|