2025-02-25 14:24:21 +08:00

18 lines
430 B
C#

using System;
using System.Collections.Generic;
using DOAN.Model;
using DOAN.Model.MES.api.Dto;
using DOAN.Model.MES.base_;
using DOAN.Model.MES.base_.Dto;
namespace DOAN.Service.MES.base_.IService
{
/// <summary>
/// 工艺路线service接口
/// </summary>
public interface IBaseLineCodeService : IBaseService<BaseWorkRoute>
{
List<RestLineCodeDto> GetLineCodeOptions(RestLineCodeDto parm);
}
}