1234567891011121314151617181920 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
- /// <summary>
- /// 大数据字段Service接口
- /// add 作者: 季健国 QQ:181589805 by 2016-10-14
- /// </summary>
- public interface IContentManage : IRepository<COM_CONTENT>
- {
- /// <summary>
- /// 更新Isdel属性
- /// </summary>
- bool UpdateSql(string Id, string tablename);
- }
- }
|