Files
CNCEC_SUBQHSE_WUHUAN/SGGL/Model/SanKu/SankuAdminPenalty.cs
T
2026-09-10 18:51:12 +08:00

62 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// 三库行政处罚上报
/// </summary>
public class SankuReportAdminPenalty
{
/// <summary>
/// 分包单位社会统一信用码
/// </summary>
public string CollCropCode { get; set; }
/// <summary>
/// 上报方式【自动上报、手动上报】
/// </summary>
public string OpType { get; set; }
/// <summary>
/// 上报人
/// </summary>
public string Operator { get; set; }
/// <summary>
/// 分包单位Id
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// 分包单位名称
/// </summary>
public string UnitName { get; set; }
/// <summary>
/// 业务数据集合
/// </summary>
public List<SANKU_ADMIN_PENALTY> Items { get; set; }
}
/// <summary>
/// 三库行政处罚数据
/// </summary>
public class SankuAdminPenalty
{
public string RECORD_ID { get; set; }
public string PROJECT_CODE { get; set; }
public string PROJECT_NAME { get; set; }
public string SUBCONTRACTOR_ID { get; set; }
public string SUBCONTRACTOR_CODE { get; set; }
public string SUBCONTRACTOR_NAME { get; set; }
public DateTime PENALTY_DATE { get; set; }
public string PENALTY_TYPE { get; set; }
public string PENALTY_CONTENT { get; set; }
public decimal? PENALTY_AMOUNT { get; set; }
public string PENALTY_AUTHORITY { get; set; }
public string PENALTY_STATUS { get; set; }
//public string SOURCE_SYSTEM_ID { get; set; }
//public string SOURCE_SYSTEM_NAME { get; set; }
public string SUBMITTER_ID_NUMBER { get; set; }
public string SUBMITTER_NAME { get; set; }
public DateTime UPDATE_TIME { get; set; }
public DateTime CREATE_TIME { get; set; }
}
}