提交代码
This commit is contained in:
@@ -20,6 +20,15 @@ namespace Model
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 主数据项目数据id
|
||||
/// </summary>
|
||||
public string MasterSysId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 分公司单位
|
||||
/// </summary>
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 安全合规类
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class CNCEC_MasterData_PcEp
|
||||
{
|
||||
public string SysId { get; set; }
|
||||
|
||||
public string SysMender { get; set; }
|
||||
|
||||
public string SysModifydate { get; set; }
|
||||
|
||||
public string SysState { get; set; }
|
||||
|
||||
public string SysCreatedate { get; set; }
|
||||
|
||||
public string SysCreator { get; set; }
|
||||
|
||||
public string PrjCode { get; set; }
|
||||
|
||||
public string PrjName { get; set; }
|
||||
|
||||
public string PrjContType { get; set; }
|
||||
|
||||
public string PrjFinType { get; set; }
|
||||
|
||||
public string PrjStatus { get; set; }
|
||||
|
||||
public string PrjType { get; set; }
|
||||
|
||||
public string AdOrgCode { get; set; }
|
||||
|
||||
public string BlgGroup { get; set; }
|
||||
|
||||
public string BlgMainPrj { get; set; }
|
||||
|
||||
public string BusiArea { get; set; }
|
||||
|
||||
public string CustCode { get; set; }
|
||||
|
||||
public string FactBeginDate { get; set; }
|
||||
|
||||
public string FactEndDate { get; set; }
|
||||
|
||||
public string FinOrgCode { get; set; }
|
||||
|
||||
public string GroupPrjCode { get; set; }
|
||||
|
||||
public string GroupPrjName { get; set; }
|
||||
|
||||
public string InitDate { get; set; }
|
||||
|
||||
public string IsEnable { get; set; }
|
||||
|
||||
public string IsFore { get; set; }
|
||||
|
||||
public string IsIntPrj { get; set; }
|
||||
|
||||
public string LocCity { get; set; }
|
||||
|
||||
public string LocPro { get; set; }
|
||||
|
||||
public string LocRegion { get; set; }
|
||||
|
||||
public string MnStaffCode { get; set; }
|
||||
|
||||
public string PlanBeginDate { get; set; }
|
||||
|
||||
public string PlanEndDate { get; set; }
|
||||
|
||||
public string PppPrjCalcType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,266 @@
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class CheckRectifyItem
|
||||
{
|
||||
/// <summary>
|
||||
/// 整改id
|
||||
/// </summary>
|
||||
|
||||
public string CheckRectifyId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 编号
|
||||
/// </summary>
|
||||
|
||||
public string CheckRectifyCode
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查项目
|
||||
/// </summary>
|
||||
|
||||
public string ProjectId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 单位
|
||||
/// </summary>
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CheckDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 签发人
|
||||
/// </summary>
|
||||
|
||||
public string IssueMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 签发日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? IssueDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 处理状态
|
||||
/// </summary>
|
||||
|
||||
public string HandleState
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 明细id
|
||||
/// </summary>
|
||||
|
||||
public string CheckRectifyItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查隐患表
|
||||
/// </summary>
|
||||
|
||||
public string Table5ItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 立项人
|
||||
/// </summary>
|
||||
|
||||
public string ConfirmMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 立项日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? ConfirmDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 要求消项日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? OrderEndDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 要求消项责任人
|
||||
/// </summary>
|
||||
|
||||
public string OrderEndPerson
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 企业管理部门验证人
|
||||
/// </summary>
|
||||
|
||||
public string Verification
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 实际消项日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? RealEndDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
|
||||
public int? SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 类别
|
||||
/// </summary>
|
||||
|
||||
public string WorkType
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 隐患源点
|
||||
/// </summary>
|
||||
|
||||
public string DangerPoint
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 存在危险
|
||||
/// </summary>
|
||||
|
||||
public string RiskExists
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 是否立项
|
||||
/// </summary>
|
||||
|
||||
public bool? IsProject
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查人
|
||||
/// </summary>
|
||||
|
||||
public string CheckMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 单位负责人确认
|
||||
/// </summary>
|
||||
|
||||
public string SubjectUnitMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///附件字节
|
||||
/// </summary>
|
||||
|
||||
public List<byte[]> FileContext
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///附件表主键
|
||||
/// </summary>
|
||||
|
||||
public string AttachFileId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///对应主键
|
||||
/// </summary>
|
||||
|
||||
public string ToKeyId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件转换
|
||||
/// </summary>
|
||||
|
||||
public string AttachSource
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件路径
|
||||
/// </summary>
|
||||
|
||||
public string AttachUrl
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 环境监测
|
||||
/// </summary>
|
||||
public class EnvironmentalCheckInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 项目id
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "ProjectId is required.")]
|
||||
public string ProjectId { get; set; }
|
||||
/// <summary>
|
||||
/// /TSP
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "Tsp is required.")]
|
||||
public double Tsp { get; set; }
|
||||
/// <summary>
|
||||
/// 温度
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "Temp is required.")]
|
||||
public double Temp { get; set; }
|
||||
/// <summary>
|
||||
/// 噪声
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "Noise is required.")]
|
||||
public double Noise { get; set; }
|
||||
/// <summary>
|
||||
/// 湿度
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "Humid is required.")]
|
||||
public double Humid { get; set; }
|
||||
/// <summary>
|
||||
/// PM2.5
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "PmTwoPointFive is required.")]
|
||||
public double PmTwoPointFive { get; set; }
|
||||
/// <summary>
|
||||
/// 风速
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "WindSpeed is required.")]
|
||||
public double WindSpeed { get; set; }
|
||||
/// <summary>
|
||||
/// PM10
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "PmTen is required.")]
|
||||
public double PmTen { get; set; }
|
||||
/// <summary>
|
||||
/// 监测时间
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "Time is required.")]
|
||||
public DateTime Time { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime? CreateTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,196 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class Law_RulesRegulationsItems
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产规章制度表
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 编号
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsCode
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 类型
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsTypeId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 类型编号
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsTypeCode
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 类型名称
|
||||
/// </summary>
|
||||
|
||||
public string RulesRegulationsTypeName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 订制时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CustomDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 适用范围
|
||||
/// </summary>
|
||||
|
||||
public string ApplicableScope
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 摘要
|
||||
/// </summary>
|
||||
|
||||
public string Remark
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public string CompileMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CompileDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public string AuditMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public DateTime? AuditDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public bool? IsPass
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 单位id
|
||||
/// </summary>
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件字节
|
||||
/// </summary>
|
||||
|
||||
public List<byte[]> FileContext
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件表主键
|
||||
/// </summary>
|
||||
|
||||
public string AttachFileId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///对应主键
|
||||
/// </summary>
|
||||
|
||||
public string ToKeyId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件转换
|
||||
/// </summary>
|
||||
|
||||
public string AttachSource
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件路径
|
||||
/// </summary>
|
||||
|
||||
public string AttachUrl
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
[Serializable]
|
||||
public class NoticeOutput
|
||||
{
|
||||
public string NoticeId { get; set; }
|
||||
public string NoticeCode { get; set; }
|
||||
public string NoticeTitle { get; set; }
|
||||
public string MainContent { get; set; }
|
||||
public string CompileManName { get; set; }
|
||||
public DateTime? CompileDate { get; set; }
|
||||
public string AttachUrl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class SubUnitReportItemItem
|
||||
{
|
||||
/// <summary>
|
||||
/// 子公司上传明细id
|
||||
/// </summary>
|
||||
|
||||
public string SubUnitReportItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 子公司上传id
|
||||
/// </summary>
|
||||
|
||||
public string SubUnitReportId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 子单位
|
||||
/// </summary>
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 要求上报时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? PlanReortDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
|
||||
public string ReportTitle
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 内容
|
||||
/// </summary>
|
||||
|
||||
public string ReportContent
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 上报时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? ReportDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
|
||||
public string State
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件字节
|
||||
/// </summary>
|
||||
|
||||
public List<byte[]> FileContext
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件表主键
|
||||
/// </summary>
|
||||
|
||||
public string AttachFileId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///对应主键
|
||||
/// </summary>
|
||||
|
||||
public string ToKeyId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///附件转换
|
||||
/// </summary>
|
||||
|
||||
public string AttachSource
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 附件路径
|
||||
/// </summary>
|
||||
|
||||
public string AttachUrl
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class UpCheckReportItem
|
||||
{
|
||||
/// <summary>
|
||||
/// id
|
||||
/// </summary>
|
||||
|
||||
public string UpCheckReportId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 单位id
|
||||
/// </summary>
|
||||
|
||||
public string UnitId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查开始时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CheckStartTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 检查结束时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CheckEndTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 评价目的
|
||||
/// </summary>
|
||||
|
||||
public string Values1
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 依据
|
||||
/// </summary>
|
||||
|
||||
public string Values2
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 被评价单位(项目)概况
|
||||
/// </summary>
|
||||
|
||||
public string Values3
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 符合项
|
||||
/// </summary>
|
||||
|
||||
public string Values4
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 不符合项
|
||||
/// </summary>
|
||||
|
||||
public string Values5
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 观察项
|
||||
/// </summary>
|
||||
|
||||
public string Values6
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 改进建议
|
||||
/// </summary>
|
||||
|
||||
public string Values7
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 编制日期
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CompileDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 审核时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? AuditDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public List<Model.UpCheckReportItemItem> item1
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public List<Model.UpCheckReportItemItem2> item2
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class UpCheckReportItemItem
|
||||
{
|
||||
/// <summary>
|
||||
/// 评价组成员表id
|
||||
/// </summary>
|
||||
|
||||
public string UpCheckReportItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 评价id
|
||||
/// </summary>
|
||||
|
||||
public string UpCheckReportId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
|
||||
public string SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 名字
|
||||
/// </summary>
|
||||
|
||||
public string Name
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 性别
|
||||
/// </summary>
|
||||
|
||||
public string Sex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 所在单位名称
|
||||
/// </summary>
|
||||
|
||||
public string UnitName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 职务
|
||||
/// </summary>
|
||||
|
||||
public string PostName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 职称
|
||||
/// </summary>
|
||||
|
||||
public string WorkTitle
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 评价小组职务
|
||||
/// </summary>
|
||||
|
||||
public string CheckPostName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 评价时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CheckDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class UpCheckReportItemItem2
|
||||
{
|
||||
/// <summary>
|
||||
/// 检查明细id
|
||||
/// </summary>
|
||||
|
||||
public string UpCheckReportItem2Id
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 评价id
|
||||
/// </summary>
|
||||
|
||||
public string UpCheckReportId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
|
||||
public string SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 受检对象
|
||||
/// </summary>
|
||||
|
||||
public string SubjectObject
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 受检对象信息
|
||||
/// </summary>
|
||||
|
||||
public string SubjectObjectInfo
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 负责人
|
||||
/// </summary>
|
||||
|
||||
public string UnitMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 负责人电话
|
||||
/// </summary>
|
||||
|
||||
public string UnitManTel
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 安全专职管理人
|
||||
/// </summary>
|
||||
|
||||
public string UnitHSSEMan
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 安全专职管理人电话
|
||||
/// </summary>
|
||||
|
||||
public string UnitHSSEManTel
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 检查时间
|
||||
/// </summary>
|
||||
|
||||
public DateTime? CheckDate
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 隐患数
|
||||
/// </summary>
|
||||
|
||||
public int? RectifyCount
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 整改数
|
||||
/// </summary>
|
||||
|
||||
public int? CompRectifyCount
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 总得分
|
||||
/// </summary>
|
||||
|
||||
public decimal? TotalGetScore
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
/// <summary>
|
||||
/// 结果等级
|
||||
/// </summary>
|
||||
|
||||
public string ResultLevel
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
+682
-135
File diff suppressed because it is too large
Load Diff
@@ -52,6 +52,10 @@
|
||||
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Annotations, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.ComponentModel.Annotations.5.0.0\lib\net461\System.ComponentModel.Annotations.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Data.Linq" />
|
||||
<Reference Include="System.IO.Compression" />
|
||||
@@ -69,11 +73,14 @@
|
||||
<Compile Include="APIItem\ArchitectureReportItem.cs" />
|
||||
<Compile Include="APIItem\BaseInfoItem.cs" />
|
||||
<Compile Include="APIItem\BaseProjectItem.cs" />
|
||||
<Compile Include="APIItem\CheckRectifyItem.cs" />
|
||||
<Compile Include="APIItem\ChemicalReport.cs" />
|
||||
<Compile Include="APIItem\ChemicalReportItem.cs" />
|
||||
<Compile Include="APIItem\CNCEC_MasterData_PcEp.cs" />
|
||||
<Compile Include="APIItem\DigData\SafeLawItem.cs" />
|
||||
<Compile Include="APIItem\EnergyReport.cs" />
|
||||
<Compile Include="APIItem\EnergyReportItem.cs" />
|
||||
<Compile Include="APIItem\EnvironmentalCheckInput.cs" />
|
||||
<Compile Include="APIItem\Environmental_OperationReportDto.cs" />
|
||||
<Compile Include="APIItem\EPSummaryReport.cs" />
|
||||
<Compile Include="APIItem\HJGL\AttachSourceItems.cs" />
|
||||
@@ -125,6 +132,8 @@
|
||||
<Compile Include="APIItem\HSSE\SeDinMonthReport4OtherItem.cs" />
|
||||
<Compile Include="APIItem\HTGL\PersonItem.cs" />
|
||||
<Compile Include="APIItem\HTGL\Pro_PersonItem.cs" />
|
||||
<Compile Include="APIItem\Law_RulesRegulations.cs" />
|
||||
<Compile Include="APIItem\NoticeOutput.cs" />
|
||||
<Compile Include="APIItem\OperationReportDto.cs" />
|
||||
<Compile Include="APIItem\ProjectItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\PunishNoticeItem.cs" />
|
||||
@@ -171,6 +180,7 @@
|
||||
<Compile Include="APIItem\SHHSE\NewSYHSEDataItem.cs" />
|
||||
<Compile Include="APIItem\SHHSE\NewSYHSEDataRealTimeDeviceItem.cs" />
|
||||
<Compile Include="APIItem\SHHSE\NewSYHSEDataRiskControlItem.cs" />
|
||||
<Compile Include="APIItem\SubUnitReportItemItem.cs" />
|
||||
<Compile Include="APIItem\ToDoItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\TrainingPlanItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\TrainingPlanItemItem.cs" />
|
||||
@@ -178,6 +188,9 @@
|
||||
<Compile Include="APIItem\HSSE\TrainingTaskItemItem.cs" />
|
||||
<Compile Include="APIItem\HSSE\TrainRecordItem.cs" />
|
||||
<Compile Include="APIItem\UnitItem.cs" />
|
||||
<Compile Include="APIItem\UpCheckReportItem.cs" />
|
||||
<Compile Include="APIItem\UpCheckReportItemItem.cs" />
|
||||
<Compile Include="APIItem\UpCheckReportItemItem2.cs" />
|
||||
<Compile Include="APIItem\UserItem.cs" />
|
||||
<Compile Include="APIItem\UserReadItem.cs" />
|
||||
<Compile Include="APIItem\WeldingDailyItem.cs" />
|
||||
@@ -237,9 +250,24 @@
|
||||
<Compile Include="APIItem\ResponeData.cs" />
|
||||
<Compile Include="SpTDesktopItem.cs" />
|
||||
<Compile Include="TokenItem.cs" />
|
||||
<Compile Include="ZHGL\DataSync\AccidentOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\BaseEntities.cs" />
|
||||
<Compile Include="ZHGL\DataSync\CheckOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\ConstructionEquipmentOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\CostSmallDetailOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\CQMSDataItem.cs" />
|
||||
<Compile Include="ZHGL\DataSync\EduTrainOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\EmergencyOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\HiddenRectificationOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\HJGLDataItem.cs" />
|
||||
<Compile Include="ZHGL\DataSync\HSSEDataItem.cs" />
|
||||
<Compile Include="ZHGL\DataSync\LargeEngineeringOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\LicenseOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\MeetingOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\OfSafetySupervisorsOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\ProjectInformationOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\ProjectOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\SecurityRiskOutput.cs" />
|
||||
<Compile Include="ZHGL\DataSync\SYHSEDataItem.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 事故事件数据
|
||||
/// </summary>
|
||||
public class AccidentOutput:BaseEntities
|
||||
{
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 事故类型
|
||||
/// </summary>
|
||||
public string AccidentTypeName { get; set; }
|
||||
/// <summary>
|
||||
/// 发生时间
|
||||
/// </summary>
|
||||
public DateTime ? AccidentDate { get; set; }
|
||||
/// <summary>
|
||||
/// 人数
|
||||
/// </summary>
|
||||
public int ? PeopleNum { get; set; }
|
||||
/// <summary>
|
||||
/// 事故情况
|
||||
/// </summary>
|
||||
public string Info { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
namespace Model
|
||||
{
|
||||
public class BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键id
|
||||
/// </summary>
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 项目id
|
||||
/// </summary>
|
||||
public string ProjectId { get; set; }
|
||||
/// <summary>
|
||||
/// 项目编码
|
||||
/// </summary>
|
||||
public string ProjectCode { get; set; }
|
||||
/// <summary>
|
||||
/// 项目名称
|
||||
/// </summary>
|
||||
public string ProjectName { get; set; }
|
||||
/// <summary>
|
||||
/// 单位id
|
||||
/// </summary>
|
||||
public string UnitId { get; set; }
|
||||
/// <summary>
|
||||
/// 单位名称
|
||||
/// </summary>
|
||||
public string UnitName { get; set; }
|
||||
/// <summary>
|
||||
/// 单位编码
|
||||
/// </summary>
|
||||
public string UnitCode { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Security.Permissions;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class CheckOutput : BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 检查组/人
|
||||
/// </summary>
|
||||
public string CheckTeam { get; set; }
|
||||
/// <summary>
|
||||
/// 检查日期
|
||||
/// </summary>
|
||||
public DateTime? CheckDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class ConstructionEquipmentOutput:BaseEntities
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 设备
|
||||
/// </summary>
|
||||
public string SpecialEquipmentName { get; set; }
|
||||
/// <summary>
|
||||
/// 类型
|
||||
/// </summary>
|
||||
public string EQType { get; set; }
|
||||
/// <summary>
|
||||
/// 规格型号
|
||||
/// </summary>
|
||||
public string SizeModel { get; set; }
|
||||
/// <summary>
|
||||
/// 进场自检情况
|
||||
/// </summary>
|
||||
public string OwnerCheck { get; set; }
|
||||
/// <summary>
|
||||
/// 设备合格证号
|
||||
/// </summary>
|
||||
public string CertificateNum { get; set; }
|
||||
public DateTime? CompileDate { get; set; }
|
||||
/// <summary>
|
||||
/// 是否使用
|
||||
/// </summary>
|
||||
public bool ? IsUsed { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class CostSmallDetailOutput : BaseEntities
|
||||
{
|
||||
public DateTime? Months { get; set; }
|
||||
public decimal? SUMCost { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class EduTrainOutput:BaseEntities
|
||||
{
|
||||
public string TrainTitle { get; set; }
|
||||
public DateTime? TrainStartDate { get; set; }
|
||||
public DateTime? TrainEndDate { get; set; }
|
||||
public int TrainPersonNum { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class EmergencyOutput:BaseEntities
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 预案类型
|
||||
/// </summary>
|
||||
public string EmergencyTypeName { get; set; }
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string EmergencyName { get; set; }
|
||||
/// <summary>
|
||||
/// 版次
|
||||
/// </summary>
|
||||
public string VersionCode { get; set; }
|
||||
public int? JointPersonNum { get; set; }
|
||||
public decimal? DrillCost { get; set; }
|
||||
/// <summary>
|
||||
/// 整理日期
|
||||
/// </summary>
|
||||
public DateTime? Date { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -84,6 +84,7 @@ namespace Model
|
||||
public int? ShutdownNum { get; set; }
|
||||
public int? SpecialEquipmentNum { get; set; }
|
||||
public int? SpecialOperationTrainNum { get; set; }
|
||||
public int? EnvironmentalTrainNum { get; set; }
|
||||
public int? SpecialSeriousAccidentNum { get; set; }
|
||||
public int? SpecialTrainNum { get; set; }
|
||||
public int? SuperCompletedNum { get; set; }
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
namespace Model
|
||||
{
|
||||
public class HiddenRectificationOutput :BaseEntities
|
||||
{/// <summary>
|
||||
/// 项目简称
|
||||
/// </summary>
|
||||
public string ProjectShortName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 问题数量
|
||||
/// </summary>
|
||||
public int ProNum { get; set; }
|
||||
/// <summary>
|
||||
/// 整改数量
|
||||
/// </summary>
|
||||
public int RecNum { get; set; }
|
||||
/// <summary>
|
||||
/// 未整改数量
|
||||
/// </summary>
|
||||
public int NoRecNum { get; set; }
|
||||
/// <summary>
|
||||
/// 整改率
|
||||
/// </summary>
|
||||
public string RecRate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
namespace Model
|
||||
{
|
||||
public class LargeEngineeringOutput:BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 危大工程审批完成数
|
||||
/// </summary>
|
||||
public int CompletedNum { get; set; }
|
||||
/// <summary>
|
||||
/// 危大工程培训人次数
|
||||
/// </summary>
|
||||
public int TrainPersonNum { get; set; }
|
||||
/// <summary>
|
||||
/// 危大工程施工个数
|
||||
/// </summary>
|
||||
public int ConstructionNum { get; set; }
|
||||
/// <summary>
|
||||
/// 危大工程完工个数
|
||||
/// </summary>
|
||||
public int FinishedNum { get; set; }
|
||||
/// <summary>
|
||||
/// 超危大工程审批完成数
|
||||
/// </summary>
|
||||
public int SuperCompletedNum { get; set; }
|
||||
/// <summary>
|
||||
/// 超危大工程培训人次数
|
||||
/// </summary>
|
||||
public int SuperTrainPersonNum { get; set; }
|
||||
/// <summary>
|
||||
/// 超危大工程施工个数
|
||||
/// </summary>
|
||||
public int SuperConstructionNum { get; set; }
|
||||
/// <summary>
|
||||
/// 超危大工程完工个数
|
||||
/// </summary>
|
||||
public int SuperFinishedNum { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 作业许可证
|
||||
/// </summary>
|
||||
public class LicenseOutput:BaseEntities
|
||||
{
|
||||
public string LicenseTypeName { get; set; }
|
||||
public string UnitTypeName { get; set; }
|
||||
public string WorkAreaName { get; set; }
|
||||
public bool? IsHighRisk { get; set; }
|
||||
public DateTime? CompileDate { get; set; }
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTime? EndDate { get; set; }
|
||||
public string WorkStatesStr { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class MeetingOutput:BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
public string MeetingName { get; set; }
|
||||
/// <summary>
|
||||
/// 日期
|
||||
/// </summary>
|
||||
public DateTime? MeetingDate { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public decimal? MeetingHours { get; set; }
|
||||
/// <summary>
|
||||
/// 主持人
|
||||
/// </summary>
|
||||
public string HostMan { get; set; }
|
||||
/// <summary>
|
||||
/// 参会人数
|
||||
/// </summary>
|
||||
public int? AttentPersonNum { get; set; }
|
||||
/// <summary>
|
||||
/// 参会人员
|
||||
/// </summary>
|
||||
public string AttentPerson { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 安监人员数据
|
||||
/// </summary>
|
||||
public class OfSafetySupervisorsOutput : BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 姓名
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
/// 性别
|
||||
/// </summary>
|
||||
public string Sex { get; set; }
|
||||
/// <summary>
|
||||
/// 身份证号
|
||||
/// </summary>
|
||||
public string IdentityCard { get; set; }
|
||||
/// <summary>
|
||||
/// 岗位名称
|
||||
/// </summary>
|
||||
public string WorkPostName { get; set; }
|
||||
/// <summary>
|
||||
/// 电话
|
||||
/// </summary>
|
||||
public string Phone { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Model
|
||||
{
|
||||
public class ProjectInformationOutput
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class ProjectOutput :BaseEntities
|
||||
{
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTime? EndDate { get; set; }
|
||||
public string ProjectAddress { get; set; }
|
||||
public string ShortName { get; set; }
|
||||
public decimal? ConstructionMoney { get; set; }
|
||||
public string ProjectStateName { get; set; }
|
||||
public string ProjectState { get; set; }
|
||||
public string ProjectAttributeName { get; set; }
|
||||
public decimal? ProjectMoney { get; set; }
|
||||
public int? DayCount { get; set; }
|
||||
public string ProjectTypeName { get; set; }
|
||||
public string ProjectStateName2 { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
namespace Model
|
||||
{
|
||||
public class SecurityRiskOutput:BaseEntities
|
||||
{
|
||||
/// <summary>
|
||||
/// 一般风险数
|
||||
/// </summary>
|
||||
public int GeneralRiskNum { get; set; }
|
||||
/// <summary>
|
||||
/// 低风险数
|
||||
/// </summary>
|
||||
public int LowRiskNum { get; set; }
|
||||
/// <summary>
|
||||
/// 中风险数
|
||||
/// </summary>
|
||||
public int MediumRiskNum { get; set; }
|
||||
/// <summary>
|
||||
/// 高风险数
|
||||
/// </summary>
|
||||
public int HighRiskNum { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user