operatelog.cs

来自「will let you know the result once they r」· CS 代码 · 共 79 行

CS
79
字号
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-7-16 10:18:42
//============================================================

using System;
using System.Collections.Generic;
using System.Text;

namespace MyOffice.Models
{

    [Serializable()]
    public class OperateLog
    {

        private int operateId;
        private string userId = String.Empty;
        private string operateName = String.Empty;
        private string bojectId = String.Empty;
        private string operateDesc = String.Empty;
        private DateTime operateTime;



        public OperateLog() { }




        public int OperateId
        {
            get { return this.operateId; }
            set { this.operateId = value; }
        }





        public string UserId
        {
            get { return this.userId; }
            set { this.userId = value; }
        }


        public string OperateName
        {
            get { return this.operateName; }
            set { this.operateName = value; }
        }


        public string BojectId
        {
            get { return this.bojectId; }
            set { this.bojectId = value; }
        }


        public string OperateDesc
        {
            get { return this.operateDesc; }
            set { this.operateDesc = value; }
        }


        public DateTime OperateTime
        {
            get { return this.operateTime; }
            set { this.operateTime = value; }
        }

    }
}

⌨️ 快捷键说明

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