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,39 @@
using System;
using Newtonsoft.Json;
namespace .Data.Models
{
/// <summary>
/// 本地 BPSN 表資料項目
/// 對應後端 DAC_BPSN.cs 的 BPSNItem
/// </summary>
public class LocalBPSNItem
{
[JsonProperty("BPENO")]
public string BPENO { get; set; }
[JsonProperty("BPNME")]
public string BPNME { get; set; }
[JsonProperty("BPAWD")]
public string BPAWD { get; set; }
[JsonProperty("Is系統管理群組")]
public bool Is系統管理群組 { get; set; }
[JsonProperty("Is客戶管理群組")]
public bool Is客戶管理群組 { get; set; }
[JsonProperty("Is現場工作群組")]
public bool Is現場工作群組 { get; set; }
[JsonProperty("Is查詢群組")]
public bool Is查詢群組 { get; set; }
[JsonProperty("CreatedAt")]
public DateTime CreatedAt { get; set; }
[JsonProperty("UpdatedAt")]
public DateTime UpdatedAt { get; set; }
}
}