chore: 首次簽入 Thinkyu ASP.NET 專案

- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
2026-09-10 09:42:37 +08:00
commit 577060bc78
2496 changed files with 501389 additions and 0 deletions
@@ -0,0 +1,250 @@
//
// 這個檔案是 心得報告 資料表的資料存取類別 檔案二
// 您可以修改這個檔案,加入您自訂的屬性與方法
//
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using System.Data;
using System.Data.Common;
using WebLib;
using System.Data.SqlClient;
namespace Education
{
///<summary>
/// 心得報告 資料存取類別
///</summary>
public partial class DAC_心得報告 : WebLib.DAC
{
#region
///<summary>
/// 給查詢畫面用的 Select 方法
///</summary>
[DataObjectMethod(DataObjectMethodType.Select)]
public List Select(bool noInputReturnAll, int , string )
{
List result = new List();
bool noInput = true;
IDataList list = result as IDataList;
DbCommand cmdSelect = NewCommand();
cmdSelect.CommandText = _select + _from + _where;
if ( > 0)
{
noInput = false;
cmdSelect.CommandText += " and 訓練課程企劃編號 = @訓練課程企劃編號 ";
AddParam(cmdSelect, "訓練課程企劃編號", );
}
if ( != null && .Length > 0)
{
noInput = false;
cmdSelect.CommandText += " and 學員編號 like @學員編號 ";
AddParam(cmdSelect, "學員編號", + "%");
}
cmdSelect.CommandText += _order;
if (!noInputReturnAll && noInput)
return result;
Select(cmdSelect, ref list);
return result;
}
///<summary>
/// InsertOne 之前會執行此方法
/// 在這裡可以做一些檢查或是自動編號等動作
/// 回傳 false 會打斷 InsertOne 的執行
///</summary>
protected virtual bool BeforeInsertOne( value)
{
value. = "N";
return true;
}
///<summary>
/// InsertOne 之後會執行此方法
///</summary>
protected virtual void AfterInsertOne( value)
{
}
///<summary>
/// InsertOne 發生錯誤時會執行此方法
///</summary>
///<param name="handled">錯誤是否已經處理妥當</param>
protected virtual void OnInsertOneError(Exception error, out bool handled)
{
handled = false;
}
///<summary>
/// UpdateOne 之前會執行此方法
/// 在這裡可以做一些檢查
/// 回傳 false 會打斷 UpdateOne 的執行
///</summary>
protected virtual bool BeforeUpdateOne( value)
{
return true;
}
///<summary>
/// UpdateOne 之後會執行此方法
///</summary>
protected virtual void AfterUpdateOne( value)
{
}
///<summary>
/// UpdateOne 發生錯誤時會執行此方法
///</summary>
///<param name="handled">錯誤是否已經處理妥當</param>
protected virtual void OnUpdateOneError(Exception error, out bool handled)
{
handled = false;
}
///<summary>
/// DeleteOne 之前會執行此方法
/// 在這裡可以做一些檢查
/// 回傳 false 會打斷 DeleteOne 的執行
///</summary>
protected virtual bool BeforeDeleteOne( value)
{
return true;
}
///<summary>
/// DeleteOne 之後會執行此方法
///</summary>
protected virtual void AfterDeleteOne( value)
{
}
///<summary>
/// DeleteOne 之前會執行此方法
/// 在這裡可以做一些檢查
/// 回傳 false 會打斷 DeleteOne 的執行
///</summary>
protected virtual bool BeforeDeleteOne(int , int DB_APPNO)
{
return true;
}
///<summary>
/// DeleteOne 之後會執行此方法
///</summary>
protected virtual void AfterDeleteOne(int , int DB_APPNO)
{
}
///<summary>
/// DeleteOne 發生錯誤時會執行此方法
///</summary>
///<param name="handled">錯誤是否已經處理妥當</param>
protected virtual void OnDeleteOneError(Exception error, out bool handled)
{
handled = false;
}
#endregion
// 有另外加上去的屬性及方法,請加在這裡
public void Update(int , string , string , string , string UserId)
{
List d = Select(false, , );
if (d.Count == 0)
{
newValue = new ();
newValue. = ;
newValue. = ;
newValue. = ;
newValue. = ;
newValue.DB_CRUSR = UserId;
InsertOne(newValue);
}
else
{
d[0]. = ;
d[0]. = ;
d[0].DB_TRUSR = UserId;
UpdateOne(d[0]);
}
}
public void (int , string UserId)
{
List d = SelectOne();
if (d.Count > 0)
{
d[0]. = "Y";
d[0].DB_TRUSR = UserId;
UpdateOne(d[0]);
}
}
public void (int , string UserId)
{
List d = SelectOne();
if (d.Count > 0)
{
d[0]. = "N";
d[0].DB_TRUSR = UserId;
UpdateOne(d[0]);
}
}
[DataObjectMethod(DataObjectMethodType.Select)]
public DataTable Select上架()
{
DbCommand cmdSelect = NewCommand();
cmdSelect.CommandText =
@"SELECT A.心得報告編號, A.訓練課程企劃編號, A.學員編號, A.心得,
B.訓練名稱, B.訓練日期, B.訓練日期迄, C.BPNME AS 學員姓名,
( SELECT COUNT(1)
FROM 心得報告討論 D
WHERE A.心得報告編號=D.心得報告編號
AND (D.下架 IS NULL OR D.下架 = '' OR D.下架 = 'N') ) AS 討論人數
FROM 心得報告 A
INNER JOIN 訓練課程企劃 B ON A.訓練課程企劃編號 = B.編號
INNER JOIN BPSNView C ON A.學員編號 = C.BPENO
WHERE A.上架='Y'
ORDER BY A.心得報告編號 DESC";
return Select(cmdSelect);
}
[DataObjectMethod(DataObjectMethodType.Select)]
public List Select建議(int )
{
List result = new List();
IDataList list = result as IDataList;
DbCommand cmdSelect = NewCommand();
cmdSelect.CommandText = _select + _from + _where
+ " and 訓練課程企劃編號 = @訓練課程企劃編號 "
+ " and 建議 is not null "
+ " and 建議 <> '' "
;
AddParam(cmdSelect, "訓練課程企劃編號", );
Select(cmdSelect, ref list);
return result;
}
}
///<summary>
/// 心得報告 資料集合類別
///</summary>
public partial class List : List<>
{
// 有另外加上去的屬性及方法,請加在這裡
}
///<summary>
/// 心得報告 資料紀錄類別
///</summary>
public partial class
{
// 有另外加上去的屬性及方法,請加在這裡
}
}