25 lines
648 B
C#
25 lines
648 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.group;
|
|
using DOAN.Model.MES.group.Dto;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.group.IService
|
|
{
|
|
/// <summary>
|
|
/// 人员技能矩阵图service接口
|
|
/// </summary>
|
|
public interface IGroupPersonSkillMatrixService : IBaseService<GroupPersonSkill>
|
|
{
|
|
PagedInfo<GroupPersonSkillMatrixDto> GetList(GroupPersonSkillMatrixQueryDto parm);
|
|
|
|
GroupPersonSkill GetInfo(string Id);
|
|
|
|
GroupPersonSkill AddGroupPersonSkillMatrix(GroupPersonSkill parm);
|
|
|
|
int UpdateGroupPersonSkillMatrix(GroupPersonSkill parm);
|
|
|
|
}
|
|
}
|