?? tb_musicinfo.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace KTV.KTVclass
{
public class tb_musicinfo
{
//歌曲編號
private string Music_code;
public string strMusic_code
{
get{ return Music_code;}
set{ Music_code=value;}
}
//歌曲名稱
private string MusicC_name;
public string strMusicC_name
{
get{ return MusicC_name;}
set{ MusicC_name=value;}
}
//演唱歌手
private string Music_author;
public string strMusic_author
{
get{ return Music_author;}
set{ Music_author=value;}
}
//歌典類別
private string Music_Kind;
public string strMusic_Kind
{
get{ return Music_Kind;}
set{ Music_Kind=value;}
}
//語言
private string Music_chinse;
public string strMusic_chinse
{
get{ return Music_chinse;}
set{ Music_chinse=value;}
}
//歌曲文件路徑
private string Music_filepath;
public string strMusic_filepath
{
get{ return Music_filepath;}
set{ Music_filepath=value;}
}
//歌曲名子縮寫
private string Music_Ping;
public string strMusic_Ping
{
get{ return Music_Ping;}
set{ Music_Ping=value;}
}
//錄入時間
private DateTime Music_date;
public DateTime daMusic_date
{
get{ return Music_date;}
set{ Music_date=value;}
}
//刪除標記
private int Music_falg;
public int intMusic_falg
{
get{ return Music_falg;}
set{ Music_falg=value;}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -