?? tb_loginfo.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace property.model.tb_logInfo
{
class tb_logInfo
{
private string username;//-用戶姓名
private string logshou;//備注
private DateTime logdate;//初始化日期
public void setusername(string username)
{ this.username = username; }
public string getusername()
{ return username; }
public void setlogshou(string logshou)
{ this.logshou = logshou; }
public string getlogshou()
{ return logshou; }
public void setlogdate(DateTime logdate)
{ this.logdate = logdate; }
public DateTime getlogdate()
{ return logdate; }
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -