Files
thinkyu/教育訓練系統/Web/DAC/溝通記錄/DAC_訓練溝通記錄歷程.cs
sryang 577060bc78 chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
2026-09-10 09:42:37 +08:00

21 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WebLib;
namespace Education
{
public class DAC_訓練溝通記錄歷程 : NameValueList
{
public DAC_訓練溝通記錄歷程()
{
this.Add("年度計劃溝通紀錄(包含老師、學員、主管、客戶)", 1);
this.Add("課程設計溝通紀錄(包含老師、學員、主管、客戶)", 2);
this.Add("課程執行溝通紀錄(課中執行情況)", 3);
this.Add("課後查核溝通紀錄(檢討會議紀錄)", 4);
this.Add("成果溝通紀錄(老師、學員、主管回饋、意見)", 5);
this.Add("其他", 999);
}
}
}