123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CB.Entity
- {
- public class ResultMessage
- {
- /// <summary>
- /// 操作状态
- /// </summary>
- private bool state = false;
- public bool State
- {
- get { return state; }
- set { state = value; }
- }
- /// <summary>
- /// 返回信息
- /// </summary>
- private string message;
- public string Message
- {
- get { return message; }
- set { message = value; }
- }
- }
- }
|