init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
|
||||
namespace Zhaizj.Framework.Config {
|
||||
|
||||
/// <summary>
|
||||
/// 配置项
|
||||
/// </summary>
|
||||
public interface ISetting {
|
||||
|
||||
int Id { get; set; }
|
||||
|
||||
String DataType { get; set; }
|
||||
|
||||
String Name { get; set; }
|
||||
String Description { get; set; }
|
||||
|
||||
// 格式json
|
||||
String Options { get; set; }
|
||||
|
||||
String SettingValue { get; set; }
|
||||
|
||||
|
||||
String ValueString { get; }
|
||||
int ValueInt { get; }
|
||||
Boolean ValueBool { get; }
|
||||
DateTime ValueTime { get; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user