first commit

This commit is contained in:
ldw
2025-09-17 20:04:00 +08:00
commit 3d8675b65c
310 changed files with 115085 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace JinYuan.Models
{
/// <summary>
/// 不良統計
/// </summary>
public class ChartDataType
{
/// <summary>
/// 數據類型
/// </summary>
public string DataType { get; set; }
/// <summary>
/// 數量
/// </summary>
public int DataCount { get; set; }
}
}