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

44 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
namespace Education
{
/// <summary>
/// 領據匯入資料項目
/// </summary>
public class 領據匯入Item
{
public DateTime? 活動日期 { get; set; }
public string 身分別 { get; set; }
public string 領款人姓名 { get; set; }
public string 身分證字號 { get; set; }
public string 憑證類別 { get; set; }
public string 計畫代號 { get; set; }
public string 計畫名稱 { get; set; }
public string 活動地點 { get; set; }
public string 活動類別 { get; set; }
public string 付款方式 { get; set; }
public string 活動名稱事由 { get; set; }
// 勞務費欄位
public string 勞務費費用別 { get; set; }
public string 扣繳類別 { get; set; }
public int? 單價 { get; set; }
public decimal? 數量 { get; set; }
public string 單位 { get; set; }
public int? 服務費 { get; set; }
// 差旅費欄位
public string 差旅票價資訊 { get; set; }
public string 起點 { get; set; }
public string 訖點 { get; set; }
public int? 捷運公車 { get; set; }
public int? 火車 { get; set; }
public int? 計程車 { get; set; }
public int? 高鐵飛機 { get; set; }
public int? 自行開車 { get; set; }
public int? 過路費停車費 { get; set; }
public int? 住宿費 { get; set; }
}
}