172 lines
3.8 KiB
C#
172 lines
3.8 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Web;
|
||
|
||
namespace Song.Site.Ext.SyncData.Entity
|
||
{
|
||
public class zybEnterprise
|
||
{
|
||
public string id;
|
||
|
||
public string companyName;//单位名称
|
||
|
||
public string openId;//微信openId
|
||
|
||
//@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||
//public DateTime creadTime;//创建时间
|
||
|
||
public string atProvince;//所在省
|
||
|
||
public string zgName; //职工名称
|
||
|
||
public string atCity;//所在市
|
||
|
||
public string atArea;//所在区
|
||
|
||
public string QyRs;
|
||
|
||
public string atStreet;//所在街道
|
||
|
||
public string tyCode;//统一信用代码
|
||
|
||
public string enterpriseScale;//统一社会信用代码
|
||
|
||
public string industryType;//行业分类 guid
|
||
|
||
public string economicType;//经济类型 guid
|
||
|
||
//public string zyContacts;//职业卫生管理联系人
|
||
public List<zybManager> zyContacts;
|
||
|
||
public string phone;//联系电话
|
||
|
||
public string dwzcrs;//本单位在册职工总人数
|
||
|
||
public string dwjhrs;//本单位接害总人数
|
||
|
||
public string zycpjcl;//主要产品及产量
|
||
|
||
public string zybzljrs;//职业病危害因素种类及人数
|
||
|
||
public string qyLevel; //企业关注等级
|
||
|
||
public string qyLevelSize; //重点关注企业数
|
||
|
||
public string enterpriseLevel;//企业级别
|
||
|
||
public string eClass;//企业分类 0:被检查的企业 1:检测机构 2:评价机构
|
||
|
||
public string atAddress;//详细地址
|
||
|
||
public string scale;//企业规模
|
||
|
||
public string enterpriseCount;//企业数量
|
||
|
||
public string areaName;//企业地址
|
||
|
||
public string cfqkCount;//尘肺情况
|
||
|
||
public string pxqkCount;//培训人数
|
||
|
||
public string tiqkCount;//体检情况
|
||
|
||
public string pjqkCount;//评价情况
|
||
|
||
public string jcqkCount;//检测情况
|
||
public string qxRs;//区县人数
|
||
|
||
public string whcd;//危害程度
|
||
public string pclx;//评测类型
|
||
|
||
|
||
public string tjwcl;//体检完成率
|
||
|
||
public string jcwcl;//检测完成率
|
||
|
||
public string pjwcl;//评价完成率
|
||
public string yjxm;//预警提示
|
||
|
||
public string dj;//等级
|
||
|
||
public string zfryId;//执法人员id
|
||
|
||
public string qydj;
|
||
|
||
public string qydjSize;
|
||
|
||
/**
|
||
* 企业邮箱
|
||
*/
|
||
public string email;
|
||
/**
|
||
* 法人姓名
|
||
*/
|
||
public string legelName;
|
||
|
||
/**
|
||
* 法人身份证号
|
||
*/
|
||
public string legelIdcard;
|
||
/**
|
||
* 法人电话
|
||
*/
|
||
public string legelPhone;
|
||
|
||
|
||
/**
|
||
* 主要负责人姓名
|
||
*/
|
||
public string zyfzName;
|
||
|
||
/**
|
||
* 主要负责人身份证号
|
||
*/
|
||
public string zyfzIdcard;
|
||
|
||
/**
|
||
* 主要负责人手机号码
|
||
*/
|
||
public string zyfzPhone;
|
||
|
||
|
||
/**
|
||
* 行业一级
|
||
*/
|
||
public string hyOne;
|
||
|
||
/**
|
||
* 行业二级
|
||
*/
|
||
public string hyTwo;
|
||
|
||
/**
|
||
* 行业三级
|
||
*/
|
||
public string hyThree;
|
||
/**
|
||
* 行业四级
|
||
*/
|
||
public string hyFour;
|
||
/**
|
||
* 行业危害
|
||
*/
|
||
public string hyWh;
|
||
/**
|
||
* 单位规模 (大1 中 2 小 3 微 4)
|
||
*/
|
||
public int dwgm;
|
||
/**
|
||
* 分数
|
||
*/
|
||
public int score;
|
||
/**
|
||
* 级别
|
||
*/
|
||
public string level;
|
||
|
||
public string jCount;//甲类用人单位人数
|
||
public string yCount;//乙类用人单位人数
|
||
public string bCount;//丙类用人单位人数
|
||
}
|
||
} |