You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
817 B
48 lines
817 B
namespace SparkClient.ViewModel.Configuration; |
|
|
|
public class AlgorithmConfigVM : BaseViewModel |
|
{ |
|
|
|
public AlgorithmConfigVM() |
|
{ |
|
// 初始化VIEW层参数 |
|
// 初始化VIEW层Command |
|
this.InitAlgorithmData(null); |
|
} |
|
|
|
/// <summary> |
|
/// 初始化算法数据 |
|
/// </summary> |
|
/// <param name="param"></param> |
|
public void InitAlgorithmData(object param) |
|
{ |
|
} |
|
|
|
/// <summary> |
|
/// 添加行 |
|
/// </summary> |
|
/// <param name="row">行数</param> |
|
public void AddRows(object row) |
|
{ |
|
|
|
} |
|
|
|
/// <summary> |
|
/// 保存数据 |
|
/// </summary> |
|
/// <param name="param"></param> |
|
public void SaveAlgorithmData(object param) |
|
{ |
|
|
|
} |
|
|
|
/// <summary> |
|
/// 删除一行数据 |
|
/// </summary> |
|
/// <param name="row">行</param> |
|
public void DelAlgorRow(object row) |
|
{ |
|
|
|
} |
|
|
|
} |