2023-03-07 增加实业数据编辑

This commit is contained in:
2023-03-07 23:01:04 +08:00
parent 79c311a870
commit 3f158f1a70
38 changed files with 5390 additions and 4 deletions
@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class NewSYHSEDataRiskControlItem
{
/// <summary>
/// ID
/// </summary>
public string Id
{
get;
set;
}
/// <summary>
/// 风险名称
/// </summary>
public string RiskControlName
{
get;
set;
}
}
}