criteria.cs

来自「.net的数据持久层」· CS 代码 · 共 37 行

CS
37
字号
using System;

namespace Platform.Data {

	public class Criteria {

		private CriteriaType _Type;
		private string _Name;
		private object _Value;

		public Criteria() {
		}

		public Criteria(CriteriaType type, string name, object value) {
			this.Type = type;
			this.Name = name;
			this.Value = value;
		}

		public CriteriaType Type {
			get { return _Type; }
			set { _Type = value; }
		}

		public string Name {
			get { return _Name; }
			set { _Name = value; }
		}

		public object Value {
			get { return _Value; }
			set { _Value = value; }
		}

	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?