| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SAGA.GplotManage
- {
- public abstract class RelationUploader:IRelationUploader
- {
- public RelationUploader(string relationType,string relationDisplay)
- {
- RelationType = relationType;
- RelationDisplay = RelationDisplay;
- }
- /*
- *可以将计算写在upload中,就像把计算卸载Show中
- */
- /// <summary>
- /// 图关系类型
- /// </summary>
- public string RelationType { get;private set; }
- /// <summary>
- /// 图关系显示名称
- /// </summary>
- public string RelationDisplay { get; private set; }
- public virtual void Upload()
- {
- var data = string.Empty;
- Upload(data);
- }
- public virtual void Upload(object loadData)
- {
- }
- }
- }
|