using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PMS.EntityModels.Product;
namespace PMS.Interface.Product
{
///
/// 创建者:冉利
/// 创建日期:2018/1/30
/// 功能描述:问题沟通过程
///
public interface IWTGTGCModel
{
///
/// 查询沟通内容
///
///
///
string GetCommunicates(string iD);
///
/// 新增沟通内容
///
///
///
string SubmitContent(WTGTGCModel model);
}
}