using Yw.DAL;
namespace HStation.DAL
{
///
/// 图表
///
public interface IXhsPhartDiagram : IBaseDAL, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
{
///
/// 插入拓展
///
long InsertEx(Entity.XhsPhartDiagram diagram, List graphList);
///
/// 更新拓展
///
bool UpdateEx(Entity.XhsPhartDiagram diagram, List graphList);
///
/// 更新 DiagramParas
///
bool UpdateDiagramParas(long ID, string DiagramParas);
///
/// 更新 DiagramInfo
///
bool UpdateDiagramInfo(long ID, string DiagramInfo);
///
/// 更新 DispParas
///
bool UpdateDispParas(long ID, string DispParas);
///
/// 更新 ExtraParas
///
bool UpdateExtraParas(long ID, string ExtraParas);
///
/// 通过 ID 删除 同时删除图形
///
bool DeleteExByID(long ID);
}
}