123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using PMS.BusinessModels.Account;
- using PMS.BusinessModels.Problem;
- namespace PMS.Interface.Support
- {
- public interface ISupport
- {
- /// <summary>
- /// 登记问题
- /// </summary>
- /// <param name="model"></param>
- /// <param name="user"></param>
- /// <param name="id">问题id</param>
- /// <returns></returns>
- ProblemStateModel RegisterSupportProblem(ProblemBusinessModel model, UserInfo user, string id,string AssignPerson);
- }
- }
|