| | |
| | | public String ZIPCode; //邮编 |
| | | public String Address; //地址 |
| | | public String OCSMCategory; //OCSM分类 |
| | | public String HospitalLevel; //政府等级 |
| | | // 科室 |
| | | public String DepartmentClass; //科室类别 |
| | | public String HospitalCode; //关联医院 |
| | |
| | | RecordTypeId, //记录类型Id |
| | | Department_RecordType_Name__c, //科室分类名 |
| | | Parent.Parent.Management_Code__c, //医院的 管理编码 |
| | | Grade__c, //政府等级 |
| | | PlatformCode__c, //智慧医疗编码 |
| | | Abbreviation__c, //简称 |
| | | Parent.Parent.State_Master__r.Level1_Code__c, |
| | |
| | | gd.ZIPCode = ''; //邮编 |
| | | gd.Address = ''; //地址 |
| | | gd.OCSMCategory = ''; //OCSM分类 |
| | | gd.HospitalLevel = ''; //政府等级 |
| | | // 科室 |
| | | gd.DepartmentClass = ''; //科室类别 |
| | | gd.HospitalCode = ''; //关联医院 |
| | |
| | | gd.Address = String.isBlank(acc.Address__c) ? '' : acc.Address__c; //地址 |
| | | gd.ManageCode2 = manageCode2; //智慧医疗编码 |
| | | gd.OCSMCategory = acc.OCM_Category__c; //OCSM分类(医院) |
| | | gd.HospitalLevel = acc.Grade__c; //政府等级 |
| | | } |
| | | |
| | | // 经销商 |