diff --git a/blood_bus/src/main/java/com/czblood/bus/constants/BloodInterfaceTypeConstants.java b/blood_bus/src/main/java/com/czblood/bus/constants/BloodInterfaceTypeConstants.java index bd3e120..eb5a646 100644 --- a/blood_bus/src/main/java/com/czblood/bus/constants/BloodInterfaceTypeConstants.java +++ b/blood_bus/src/main/java/com/czblood/bus/constants/BloodInterfaceTypeConstants.java @@ -1,5 +1,8 @@ package com.czblood.bus.constants; +/** + * 接口常量类 + */ public class BloodInterfaceTypeConstants { /** * 申请单审核 diff --git a/blood_bus/src/main/java/com/czblood/bus/constants/BloodSysLogConstants.java b/blood_bus/src/main/java/com/czblood/bus/constants/BloodSysLogConstants.java index cfaf832..6f7507e 100644 --- a/blood_bus/src/main/java/com/czblood/bus/constants/BloodSysLogConstants.java +++ b/blood_bus/src/main/java/com/czblood/bus/constants/BloodSysLogConstants.java @@ -5,4 +5,6 @@ package com.czblood.bus.constants; */ public class BloodSysLogConstants { public static final String LOG_TYPE_TRANSFUSE_APPLY_BEFORE = "输血前评估"; + public static final String LOG_TYPE_YLJG = "医疗机构"; + public static final String LOG_TYPE_DMZD = "代码字典"; } diff --git a/blood_bus/src/main/java/com/czblood/bus/mapper/XKHosInfoMapper.java b/blood_bus/src/main/java/com/czblood/bus/mapper/XKHosInfoMapper.java deleted file mode 100644 index 6cabf43..0000000 --- a/blood_bus/src/main/java/com/czblood/bus/mapper/XKHosInfoMapper.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.czblood.bus.mapper; - -import com.czblood.bus.pojo.XkHosInfo; - -import java.util.List; - -public interface XKHosInfoMapper { - - List query(XkHosInfo xkHosInfo); -} diff --git a/blood_bus/src/main/java/com/czblood/bus/mapper/XkHosInfoMapper.java b/blood_bus/src/main/java/com/czblood/bus/mapper/XkHosInfoMapper.java new file mode 100644 index 0000000..c108a02 --- /dev/null +++ b/blood_bus/src/main/java/com/czblood/bus/mapper/XkHosInfoMapper.java @@ -0,0 +1,13 @@ +package com.czblood.bus.mapper; + +import com.czblood.bus.pojo.XkHosInfo; + +import java.util.List; + +public interface XkHosInfoMapper { + + List queryList(XkHosInfo xkHosInfo); + XkHosInfo queryOne(String hospital_code); + void insert(XkHosInfo xkHosInfo); + void update(XkHosInfo xkHosInfo); +} diff --git a/blood_bus/src/main/java/com/czblood/bus/mapper/XkTransfuseApplyBeforeMapper.java b/blood_bus/src/main/java/com/czblood/bus/mapper/XkTransfuseApplyBeforeMapper.java index 4f5cba2..f75cbf7 100644 --- a/blood_bus/src/main/java/com/czblood/bus/mapper/XkTransfuseApplyBeforeMapper.java +++ b/blood_bus/src/main/java/com/czblood/bus/mapper/XkTransfuseApplyBeforeMapper.java @@ -9,4 +9,5 @@ public interface XkTransfuseApplyBeforeMapper { void insertXkTransfuseApplyBefore(XkTransfuseApplyBefore xkTransfuseApplyBefore); void updateXkTransfuseApplyBefore(XkTransfuseApplyBefore xkTransfuseApplyBefore); void deleteXkTransfuseApplyBefore(String bill_no); + XkTransfuseApplyBefore queryOne(String bill_no); } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkHosInfo.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkHosInfo.java index 6f5429c..3ed8222 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkHosInfo.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkHosInfo.java @@ -1,6 +1,8 @@ package com.czblood.bus.pojo; import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import io.swagger.v3.oas.annotations.media.Schema; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -8,18 +10,29 @@ import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor -@ApiModel(("医院信息")) +@ApiModel("医院信息") public class XkHosInfo { + @ApiModelProperty("医院编码") private String hospital_code; + @ApiModelProperty("医院名称") private String hospital_name; + @ApiModelProperty("医院地址") private String address; + @ApiModelProperty("邮政编码") private String post_code; + @ApiModelProperty("电话") private String telno; + @ApiModelProperty("联系人") private String link_person; + @ApiModelProperty("类型") private String org_kind; + @ApiModelProperty("结算类型") private String foot_mode; + @ApiModelProperty("所属行政区") private String org_zone; + @ApiModelProperty("所属街道") private String org_street; + @ApiModelProperty(value = "使用标志,Y使用,N不使用") private String sfby; private String last_modified; } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkPatientInfo.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkPatientInfo.java index 54f8caa..b984a2e 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkPatientInfo.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkPatientInfo.java @@ -7,6 +7,7 @@ import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import javax.validation.constraints.NotBlank; import java.util.Date; @Data @@ -17,8 +18,10 @@ public class XkPatientInfo { @ApiModelProperty("医疗机构ID") private String hos_id; @ApiModelProperty("住院号") + @NotBlank(message = "住院号不能为空") private String beinhos_id; @ApiModelProperty("病人姓名") + @NotBlank(message = "病人姓名不能为空") private String patient_name; @ApiModelProperty("病人性别") private String patient_sex; diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkProTransfuseProject.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkProTransfuseProject.java index b9eb69e..4ff8e72 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkProTransfuseProject.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkProTransfuseProject.java @@ -1,6 +1,7 @@ package com.czblood.bus.pojo; import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -11,15 +12,19 @@ import lombok.NoArgsConstructor; @NoArgsConstructor @ApiModel(value = "输血前检查项目") public class XkProTransfuseProject { + @ApiModelProperty("序号") private Integer sid; + @ApiModelProperty("项目名称") private String pro_name; private String result_type; private String unit; private String need; + @ApiModelProperty("lis项目名称") private String lis_name; private String max_value; private String min_value; private String upload_flag; private String Pro_Name_All; + @ApiModelProperty("有效时间") private Float ValidTime; } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApply.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApply.java index c0e95ee..672b7cc 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApply.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApply.java @@ -34,6 +34,7 @@ public class XkTransfuseApply { private String match_history; private String transplant_history; private String dept_id; + @ApiModelProperty("申请时间") private Date apply_date; private String send_person; private String charge_sign; @@ -44,6 +45,7 @@ public class XkTransfuseApply { private String causalis; private String bank_director; private String medical_affairs; + @ApiModelProperty("对应的条码ID") private String sample_id; private Date gather_date; private String abo_type; @@ -59,12 +61,14 @@ public class XkTransfuseApply { private String diagnoses; @ApiModelProperty("输血目的") private String intent; + @ApiModelProperty("申请单类型") private String apply_type; private Date use1_date; private Date use2_date; private Date use3_date; private String remark; private String is_plan; + @ApiModelProperty("申请单状态类型") private String bill_sort; private String sample_sign; private String input_dept; @@ -95,5 +99,6 @@ public class XkTransfuseApply { private String Valid_Flag; private String notice_yn; private String his_SerialNo; + @ApiModelProperty("输血评估单") private String assess_bill_no; } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyApproval.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyApproval.java index 50cd0cc..86faa33 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyApproval.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyApproval.java @@ -1,6 +1,7 @@ package com.czblood.bus.pojo; import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -18,7 +19,9 @@ public class XkTransfuseApplyApproval { private Date Archiater_CheckTime; private String Medical_Dept; private Date Medical_CheckTime; + @ApiModelProperty("2级审批,科主任审批,3级审批,需要科主任和医务部审批") private String ApplyLevel; + @ApiModelProperty("是否审批标志") private String Flag; private BigDecimal SID; } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyBefore.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyBefore.java index 721e73c..29f0343 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyBefore.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyBefore.java @@ -6,6 +6,7 @@ import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; +import javax.validation.constraints.NotBlank; import java.math.BigDecimal; import java.util.Date; @@ -17,6 +18,7 @@ public class XkTransfuseApplyBefore { @ApiModelProperty("单据编号") private String bill_no; @ApiModelProperty("住院号") + @NotBlank(message = "住院号不能为空") private String beinhos_id; @ApiModelProperty("科室ID") private String dept_id; @@ -27,8 +29,10 @@ public class XkTransfuseApplyBefore { @ApiModelProperty("出血量") private BigDecimal blood_loss; @ApiModelProperty("申请时间") + @NotBlank(message = "申请时间不允许为空") private Date assess_data; @ApiModelProperty("申请人") + @NotBlank(message = "申请人不能为空") private String assess_person; @ApiModelProperty("申请血液品种") private String blood_breed; @@ -50,4 +54,10 @@ public class XkTransfuseApplyBefore { private String bqgy; @ApiModelProperty("医疗机构ID") private String hos_id; + @ApiModelProperty("单据状态,1保存状态,2使用状态,0作废") + private String bill_status; + + private Date stime; + private Date etime; + } diff --git a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyTestitem.java b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyTestitem.java index 07af1c6..505a6bb 100644 --- a/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyTestitem.java +++ b/blood_bus/src/main/java/com/czblood/bus/pojo/XkTransfuseApplyTestitem.java @@ -26,6 +26,4 @@ public class XkTransfuseApplyTestitem { private Date test_date; @ApiModelProperty("上传标志") private String upload_flag; - @ApiModelProperty("医疗机构ID") - private String hos_id; } diff --git a/blood_bus/src/main/java/com/czblood/bus/system/BloodExtInterfaceService.java b/blood_bus/src/main/java/com/czblood/bus/system/BloodExtInterfaceService.java index 56506cb..38d848e 100644 --- a/blood_bus/src/main/java/com/czblood/bus/system/BloodExtInterfaceService.java +++ b/blood_bus/src/main/java/com/czblood/bus/system/BloodExtInterfaceService.java @@ -1,6 +1,6 @@ package com.czblood.bus.system; -import com.czblood.bus.mapper.XKHosInfoMapper; +import com.czblood.bus.mapper.XkHosInfoMapper; import com.czblood.bus.mapper.XkOperatorInfoMapper; import com.czblood.bus.pojo.XkHosInfo; import com.czblood.bus.pojo.XkOperatorInfo; @@ -27,7 +27,7 @@ import java.util.List; public class BloodExtInterfaceService implements ExtSystemInterface { @Resource - XKHosInfoMapper xkHosInfoMapper; + XkHosInfoMapper xkHosInfoMapper; @Resource XkOperatorInfoMapper xkOperatorInfoMapper; @Autowired @@ -77,6 +77,7 @@ public class BloodExtInterfaceService implements ExtSystemInterface { @Override public Object gethospList() { XkHosInfo xkHosInfo = new XkHosInfo(); - return xkHosInfoMapper.query(xkHosInfo); + xkHosInfo.setSfby("Y"); + return xkHosInfoMapper.queryList(xkHosInfo); } } diff --git a/blood_bus/src/main/resources/mapper/XKHosInfoMapper.xml b/blood_bus/src/main/resources/mapper/XKHosInfoMapper.xml deleted file mode 100644 index 934056c..0000000 --- a/blood_bus/src/main/resources/mapper/XKHosInfoMapper.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - \ No newline at end of file diff --git a/blood_bus/src/main/resources/mapper/XkHosInfoMapper.xml b/blood_bus/src/main/resources/mapper/XkHosInfoMapper.xml new file mode 100644 index 0000000..8aa3ef9 --- /dev/null +++ b/blood_bus/src/main/resources/mapper/XkHosInfoMapper.xml @@ -0,0 +1,55 @@ + + + + + + + + + insert into xk_hos_info( + address, + post_code, + telno, + link_person, + org_kind, + foot_mode, + org_zone, + org_street, + hospital_code,hospital_name,sfby) values + ( + #{address}, + #{post_code}, + #{telno}, + #{link_person}, + #{org_kind}, + #{foot_mode}, + #{org_zone}, + #{org_street}, + #{hospital_code},#{hospital_name},#{sfby}) + + + + update xk_hos_info set + address = #{address}, + post_code = #{post_code}, + telno = #{telno}, + link_person = #{link_person}, + org_kind = #{org_kind}, + foot_mode = #{foot_mode}, + org_zone = #{org_zone}, + org_street = #{org_street}, + hospital_name = #{hospital_name}, + sfby = #{sfby}, + hospital_code = #{hospital_code} + where hospital_code = #{hospital_code} + + \ No newline at end of file diff --git a/blood_bus/src/main/resources/mapper/XkPatientInfoMapper.xml b/blood_bus/src/main/resources/mapper/XkPatientInfoMapper.xml index fa9d00b..b48e233 100644 --- a/blood_bus/src/main/resources/mapper/XkPatientInfoMapper.xml +++ b/blood_bus/src/main/resources/mapper/XkPatientInfoMapper.xml @@ -70,7 +70,7 @@ transplant_history = #{transplant_history}, last_modified = #{last_modified}, times = #{times}, - hos_id = #{hosid} + hos_id = #{hos_id} where beinhos_id = #{beinhos_id} diff --git a/blood_bus/src/main/resources/mapper/XkTransfuseApplyBeforeMapper.xml b/blood_bus/src/main/resources/mapper/XkTransfuseApplyBeforeMapper.xml index a9f9b17..8fe935f 100644 --- a/blood_bus/src/main/resources/mapper/XkTransfuseApplyBeforeMapper.xml +++ b/blood_bus/src/main/resources/mapper/XkTransfuseApplyBeforeMapper.xml @@ -11,6 +11,11 @@ + + + insert into xk_transfuse_apply_before( dept_id, @@ -30,7 +35,7 @@ cruor, bqgy, hos_id, - bill_no, beinhos_id + bill_no, beinhos_id,bill_status ) values( #{dept_id}, @@ -50,7 +55,7 @@ #{cruor}, #{bqgy}, #{hos_id}, - #{bill_no}, #{beinhos_id} + #{bill_no}, #{beinhos_id},#{bill_status} ) @@ -74,7 +79,8 @@ metabolism = #{metabolism}, cruor = #{cruor}, bqgy = #{bqgy}, - hos_id = #{hos_id} + bill_status = #{bill_status}, + bill_no = #{bill_no} where bill_no = #{bill_no} diff --git a/blood_bus/src/main/resources/mapper/XkTransfuseApplyTestitemMapper.xml b/blood_bus/src/main/resources/mapper/XkTransfuseApplyTestitemMapper.xml index 56e3aec..9b62c3d 100644 --- a/blood_bus/src/main/resources/mapper/XkTransfuseApplyTestitemMapper.xml +++ b/blood_bus/src/main/resources/mapper/XkTransfuseApplyTestitemMapper.xml @@ -13,14 +13,14 @@ Item_unit, test_date, upload_flag, - bill_no,sid,hos_id + bill_no,sid )values ( #{item_name}, #{item_result}, #{Item_unit}, #{test_date}, #{upload_flag}, - #{bill_no},#{sid},#{hos_id} + #{bill_no},#{sid} ) @@ -30,7 +30,7 @@ Item_unit=#{Item_unit}, test_date=#{test_date}, upload_flag=#{upload_flag}, - item_name=#{item_name},hos_id = #{hos_id} + item_name=#{item_name} where bill_no=#{bill_no} and sid=#{sid} diff --git a/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkDmzdController.java b/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkDmzdController.java index 294b57b..c32a31a 100644 --- a/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkDmzdController.java +++ b/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkDmzdController.java @@ -2,11 +2,14 @@ package com.czblood.busBloodbank.controller; import com.czblood.bus.cache.DmzdCache; +import com.czblood.bus.constants.BloodSysLogConstants; import com.czblood.bus.mapper.XkDmzdMapper; import com.czblood.bus.pojo.XkDmzd; import com.czblood.bus.utils.BloodBankUtil; +import com.czblood.common.annotation.Log; import com.czblood.common.core.controller.BaseController; import com.czblood.common.core.domain.Result; +import com.czblood.common.enums.BusinessType; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.*; @@ -34,6 +37,7 @@ public class XkDmzdController extends BaseController { return new Result("0","获取数据成功!",collect); } + @Log(title = BloodSysLogConstants.LOG_TYPE_DMZD, businessType = BusinessType.INSERT) @ApiOperation("添加字典") @PostMapping("/add") public Result addDmzd(@RequestBody XkDmzd xkDmzd){ @@ -43,6 +47,7 @@ public class XkDmzdController extends BaseController { return new Result("0","添加成功!"); } + @Log(title = BloodSysLogConstants.LOG_TYPE_DMZD, businessType = BusinessType.UPDATE) @ApiOperation("修改字典") @PostMapping("/update") public Result updateDmzd(@RequestBody XkDmzd xkDmzd){ @@ -52,6 +57,7 @@ public class XkDmzdController extends BaseController { return new Result("0","修改成功!"); } + @Log(title = BloodSysLogConstants.LOG_TYPE_DMZD, businessType = BusinessType.DELETE) @ApiOperation("删除字典") @GetMapping("/delete") public Result deleteDmzd(XkDmzd xkDmzd){ diff --git a/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkHosInfoController.java b/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkHosInfoController.java new file mode 100644 index 0000000..827ecec --- /dev/null +++ b/blood_bus_bloodbank/src/main/java/com/czblood/busBloodbank/controller/XkHosInfoController.java @@ -0,0 +1,48 @@ +package com.czblood.busBloodbank.controller; + +import com.czblood.bus.constants.BloodSysLogConstants; +import com.czblood.bus.mapper.XkHosInfoMapper; +import com.czblood.bus.pojo.XkHosInfo; +import com.czblood.common.annotation.Log; +import com.czblood.common.core.domain.Result; +import com.czblood.common.enums.BusinessType; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import java.util.List; + +@Api(tags = "医疗机构") +@RestController +@RequestMapping("/bus/bloodbank/hosInfo") +public class XkHosInfoController { + + @Resource + XkHosInfoMapper xkHosInfoMapper; + + + @ApiOperation("获取医疗机构列表") + @GetMapping("/queryList") + public Result queryList(){ + XkHosInfo xkHosInfo = new XkHosInfo(); + List xkHosInfoList = xkHosInfoMapper.queryList(xkHosInfo); + return new Result("0","获取数据成功!",xkHosInfoList); + } + + @Log(title = BloodSysLogConstants.LOG_TYPE_YLJG, businessType = BusinessType.INSERT) + @ApiOperation("新增机构") + @PostMapping("/add") + public Result add(@RequestBody XkHosInfo xkHosInfo){ + xkHosInfoMapper.insert(xkHosInfo); + return new Result("0","新增数据成功!"); + } + + @Log(title = BloodSysLogConstants.LOG_TYPE_YLJG, businessType = BusinessType.UPDATE) + @ApiOperation("修改数据") + @PostMapping("/update") + public Result update(@RequestBody XkHosInfo xkHosInfo){ + xkHosInfoMapper.update(xkHosInfo); + return new Result("0","修改数据成功!"); + } +} diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyBeforeController.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyBeforeController.java index 0780b82..c477a8e 100644 --- a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyBeforeController.java +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyBeforeController.java @@ -3,6 +3,7 @@ package com.czblood.busDoctor.controller; import com.czblood.bus.constants.BloodSysLogConstants; import com.czblood.bus.pojo.XkTransfuseApplyBefore; import com.czblood.busDoctor.pojo.TransfuseApplyBeforeDTO; +import com.czblood.busDoctor.pojo.TransfuseApplyBeforeVO; import com.czblood.busDoctor.service.TransfuseApplyBeforeService; import com.czblood.common.annotation.Log; import com.czblood.common.core.controller.BaseController; @@ -24,10 +25,16 @@ public class TransfuseApplyBeforeController extends BaseController { @Resource private TransfuseApplyBeforeService transfuseApplyBeforeService; - @ApiOperation("查询单据信息") + @ApiOperation("查询单据信息列表") @GetMapping("/queryList") - public Result queryList(XkTransfuseApplyBefore xkTransfuseApplyBefore){ - return transfuseApplyBeforeService.queryList(xkTransfuseApplyBefore); + public Result queryList(TransfuseApplyBeforeVO xktransfuseApplyBeforeVO){ + return transfuseApplyBeforeService.queryList(xktransfuseApplyBeforeVO); + } + + @ApiOperation("查询单个申请单信息") + @GetMapping("/queryOne") + public Result queryOne(String billNo){ + return transfuseApplyBeforeService.queryOne(billNo); } @ApiOperation("根据住院号获取病人信息") @@ -41,13 +48,9 @@ public class TransfuseApplyBeforeController extends BaseController { @PostMapping("/save") public Result save(@RequestBody TransfuseApplyBeforeDTO transfuseApplyBeforeDTO){ transfuseApplyBeforeDTO.getXkPatientInfo().setHos_id(getLoginUser().getSysLoginParam().getLoginYLJG()); - transfuseApplyBeforeDTO.getXkTransfuseApply().setHos_id(getLoginUser().getSysLoginParam().getLoginYLJG()); transfuseApplyBeforeDTO.getXkTransfuseApplyBeforeList().forEach(xkTransfuseApplyBefore -> { xkTransfuseApplyBefore.setHos_id(getLoginUser().getSysLoginParam().getLoginYLJG()); }); - transfuseApplyBeforeDTO.getXkTransfuseApplyTestitemList().forEach(xkTransfuseApplyTestitem -> { - xkTransfuseApplyTestitem.setHos_id(getLoginUser().getSysLoginParam().getLoginYLJG()); - }); return transfuseApplyBeforeService.save(transfuseApplyBeforeDTO); } diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyController.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyController.java index 98fc8a4..8ab9f78 100644 --- a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyController.java +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/controller/TransfuseApplyController.java @@ -1,10 +1,16 @@ package com.czblood.busDoctor.controller; +import com.czblood.busDoctor.service.TransfuseApplyService; +import com.czblood.common.core.domain.Result; import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; +import javax.annotation.Resource; + /** * 输血申请 */ @@ -13,4 +19,30 @@ import org.springframework.web.bind.annotation.RestController; @RequestMapping("/bus/doctor/apply") @Slf4j public class TransfuseApplyController { + + @Resource + private TransfuseApplyService transfuseApplyService; + + + + @ApiOperation("查询申请单列表") + @GetMapping("/queryList") + public Result queryList(){ + return null; + } + + + @ApiOperation("获取病人信息") + @GetMapping("/getPatInfo") + public Result getPatInfo(String beinhosId){ + return transfuseApplyService.getPatInfo(beinhosId); + } + + @ApiOperation("获取申请单明细") + @GetMapping("/queryDetail") + public Result queryDetail(){ + return null; + } + + } diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/mapper/TransfuseApplyBeforeMapper.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/mapper/TransfuseApplyBeforeMapper.java new file mode 100644 index 0000000..6d61fe9 --- /dev/null +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/mapper/TransfuseApplyBeforeMapper.java @@ -0,0 +1,10 @@ +package com.czblood.busDoctor.mapper; + +import com.czblood.busDoctor.pojo.TransfuseApplyBeforeVO; + +import java.util.List; +import java.util.Map; + +public interface TransfuseApplyBeforeMapper { + List> queryList(TransfuseApplyBeforeVO transfuseApplyBeforeVO); +} diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeDTO.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeDTO.java index 3a5cfcc..f444bdd 100644 --- a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeDTO.java +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeDTO.java @@ -19,6 +19,4 @@ public class TransfuseApplyBeforeDTO { private List xkTransfuseApplyBeforeList; @ApiModelProperty(value = "输血前lis检查项目") private List xkTransfuseApplyTestitemList; - @ApiModelProperty(value = "输血前申请信息") - private XkTransfuseApply xkTransfuseApply; } diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeVO.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeVO.java new file mode 100644 index 0000000..274b75b --- /dev/null +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/pojo/TransfuseApplyBeforeVO.java @@ -0,0 +1,27 @@ +package com.czblood.busDoctor.pojo; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.Date; + +@Data +@AllArgsConstructor +@NoArgsConstructor +@ApiModel("查询参数") +public class TransfuseApplyBeforeVO { + @ApiModelProperty("开始时间") + private Date stime; + @ApiModelProperty("结束时间") + private Date etime; + @ApiModelProperty("病人姓名") + private String patient_name; + @ApiModelProperty("住院号") + private String beinhos_id; + @ApiModelProperty("单据编号") + private String bill_no; +} diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyBeforeService.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyBeforeService.java index b9613b7..c0269b9 100644 --- a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyBeforeService.java +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyBeforeService.java @@ -2,10 +2,11 @@ package com.czblood.busDoctor.service; import com.czblood.bus.pojo.XkTransfuseApplyBefore; import com.czblood.busDoctor.pojo.TransfuseApplyBeforeDTO; +import com.czblood.busDoctor.pojo.TransfuseApplyBeforeVO; import com.czblood.common.core.domain.Result; public interface TransfuseApplyBeforeService { - Result queryList(XkTransfuseApplyBefore xkTransfuseApplyBefore); + Result queryList(TransfuseApplyBeforeVO transfuseApplyBeforeVO); Result getPatInfo(String patNo); @@ -16,4 +17,6 @@ public interface TransfuseApplyBeforeService { Result delete(String billNo); Result print(String billNo,String templateName); + + Result queryOne(String billNo); } diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyService.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyService.java new file mode 100644 index 0000000..7bf6f1e --- /dev/null +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/TransfuseApplyService.java @@ -0,0 +1,7 @@ +package com.czblood.busDoctor.service; + +import com.czblood.common.core.domain.Result; + +public interface TransfuseApplyService { + Result getPatInfo(String beinhosId); +} diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyBeforeServiceImpl.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyBeforeServiceImpl.java index dc5399a..2ba00c9 100644 --- a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyBeforeServiceImpl.java +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyBeforeServiceImpl.java @@ -7,6 +7,7 @@ import com.czblood.bus.constants.BloodPrintTypeConstants; import com.czblood.bus.mapper.XkPatientInfoMapper; import com.czblood.bus.mapper.XkTransfuseApplyBeforeMapper; import com.czblood.bus.mapper.XkTransfuseApplyMapper; +import com.czblood.bus.mapper.XkTransfuseApplyTestitemMapper; import com.czblood.bus.pojo.*; import com.czblood.bus.pojo.inter.BeforeAssessRequest; import com.czblood.bus.pojo.inter.GetPatientInfoRequest; @@ -14,7 +15,9 @@ import com.czblood.bus.pojo.inter.GetTestResultRequest; import com.czblood.bus.utils.BloodBankUtil; import com.czblood.bus.utils.BloodInterfaceUtil; import com.czblood.bus.utils.ReportUtil; +import com.czblood.busDoctor.mapper.TransfuseApplyBeforeMapper; import com.czblood.busDoctor.pojo.TransfuseApplyBeforeDTO; +import com.czblood.busDoctor.pojo.TransfuseApplyBeforeVO; import com.czblood.busDoctor.service.TransfuseApplyBeforeService; import com.czblood.busDoctor.utils.TransfuseApplyBeforeUtil; import com.czblood.common.config.RuoYiConfig; @@ -28,6 +31,7 @@ import javax.annotation.Resource; import java.io.File; import java.util.ArrayList; import java.util.List; +import java.util.Map; import java.util.UUID; @Service @@ -43,22 +47,37 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ @Resource TransfuseApplyBeforeUtil transfuseApplyBeforeUtil; @Resource - XkTransfuseApplyMapper xkTransfuseApplyMapper; + XkTransfuseApplyTestitemMapper xkTransfuseApplyTestitemMapper; @Resource ReportUtil reportUtil; + @Resource + TransfuseApplyBeforeMapper transfuseApplyBeforeMapper; @Override - public Result queryList(XkTransfuseApplyBefore xkTransfuseApplyBefore) { - String beinhosId = xkTransfuseApplyBefore.getBeinhos_id(); - //病人基本信息 - XkPatientInfo xkPatientInfo = new XkPatientInfo(); - xkPatientInfo.setBeinhos_id(beinhosId); - List xkPatientInfoList = xkPatientInfoMapper.queryList(xkPatientInfo); + public Result queryList(TransfuseApplyBeforeVO xkTransfuseApplyBeforeVO) { + if(xkTransfuseApplyBeforeVO.getStime() == null || xkTransfuseApplyBeforeVO.getEtime() == null) return new Result("-1","开始时间和结束时间不能为空!"); + List> mapList = transfuseApplyBeforeMapper.queryList(xkTransfuseApplyBeforeVO); + return new Result("0","获取数据成功!", mapList); + } + + @Override + public Result queryOne(String billNo) { //输血前评估信息 + XkTransfuseApplyBefore xkTransfuseApplyBefore = new XkTransfuseApplyBefore(); + xkTransfuseApplyBefore.setBill_no(billNo); List xkTransfuseApplyBeforeList = xkTransfuseApplyBeforeMapper.queryList(xkTransfuseApplyBefore); + if(xkTransfuseApplyBeforeList.size() <= 0) return new Result("-1","没有找到对应的评估单信息!"); TransfuseApplyBeforeDTO transfuseApplyBeforeDTO = new TransfuseApplyBeforeDTO(); - if(xkPatientInfoList.size() > 0) transfuseApplyBeforeDTO.setXkPatientInfo(xkPatientInfoList.get(0)); transfuseApplyBeforeDTO.setXkTransfuseApplyBeforeList(xkTransfuseApplyBeforeList); + //病人信息 + XkPatientInfo xkPatientInfo = new XkPatientInfo(); + xkPatientInfo.setBeinhos_id(xkTransfuseApplyBeforeList.get(0).getBeinhos_id()); + List xkPatientInfoList = xkPatientInfoMapper.queryList(xkPatientInfo); + if(xkPatientInfoList.size() <= 0) return new Result("-1","没有找到对应的病人信息!"); + transfuseApplyBeforeDTO.setXkPatientInfo(xkPatientInfoList.get(0)); + //输血前检查lis项目信息 + List xkTransfuseApplyTestitemList = xkTransfuseApplyTestitemMapper.queryList(billNo); + transfuseApplyBeforeDTO.setXkTransfuseApplyTestitemList(xkTransfuseApplyTestitemList); return new Result("0","获取数据成功!", transfuseApplyBeforeDTO); } @@ -69,7 +88,6 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ getPatientInfoRequest.setBeinhos_id(patNo); Result result = BloodInterfaceUtil.invokeBloodInterface(getPatientInfoRequest); if(!result.getCode().equals("0")) return result; - XkTransfuseApply xkTransfuseApply = JSONUtil.parseObj(result.getData()).toBean(XkTransfuseApply.class); XkPatientInfo xkPatientInfo = JSONUtil.parseObj(result.getData()).toBean(XkPatientInfo.class); if(xkPatientInfo.getBeinhos_id() == null){ XkPatientInfo xkPatientInfoOne = new XkPatientInfo(); @@ -77,7 +95,7 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ List xkPatientInfoList = xkPatientInfoMapper.queryList(xkPatientInfoOne); if(!xkPatientInfoList.isEmpty()) xkPatientInfo = xkPatientInfoList.get(0); } - //调用检验接口,获取病人检验信息 + //调用检验接口,获取病人检验信息,包括血型结果 GetTestResultRequest getTestResultRequest = new GetTestResultRequest(); getTestResultRequest.setBeinhos_id(patNo); Result result1 = BloodInterfaceUtil.invokeBloodInterface(getTestResultRequest); @@ -86,7 +104,6 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ TransfuseApplyBeforeDTO transfuseApplyBeforeDTO = new TransfuseApplyBeforeDTO(); transfuseApplyBeforeDTO.setXkPatientInfo(xkPatientInfo); transfuseApplyBeforeDTO.setXkTransfuseApplyTestitemList(xkTransfuseApplyTestitemList); - transfuseApplyBeforeDTO.setXkTransfuseApply(xkTransfuseApply); return new Result("0","获取数据成功!", transfuseApplyBeforeDTO); } @@ -97,6 +114,7 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ if(xkTransfuseApplyBeforeList.size() > 0){ XkTransfuseApplyBefore xkTransfuseApplyBefore = xkTransfuseApplyBeforeList.get(0); xkTransfuseApplyBefore.setBill_no(billNo); + xkTransfuseApplyBefore.setBill_status("1"); //保存状态 } List xkTransfuseApplyTestitemList = transfuseApplyBeforeDTO.getXkTransfuseApplyTestitemList(); for (XkTransfuseApplyTestitem xkTransfuseApplyTestitem : xkTransfuseApplyTestitemList) { @@ -126,12 +144,14 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ return new Result("0","修改成功!"); } - @Transactional @Override public Result delete(String billNo) { Result result = canModify(billNo); if(!result.getCode().equals("0")) return result; - xkTransfuseApplyBeforeMapper.deleteXkTransfuseApplyBefore(billNo); + XkTransfuseApplyBefore xkTransfuseApplyBefore = new XkTransfuseApplyBefore(); + xkTransfuseApplyBefore.setBill_status("0"); //作废状态 + xkTransfuseApplyBefore.setBill_no(billNo); + xkTransfuseApplyBeforeMapper.updateXkTransfuseApplyBefore(xkTransfuseApplyBefore); return new Result("0","删除成功!"); } @@ -172,16 +192,22 @@ public class TransfuseApplyBeforeServiceImpl implements TransfuseApplyBeforeServ } + + public Result canModify(String billNo){ - XkTransfuseApply xkTransfuseApply = new XkTransfuseApply(); - xkTransfuseApply.setAssess_bill_no(billNo); - List xkTransfuseApplyList = xkTransfuseApplyMapper.queryList(xkTransfuseApply); - if(xkTransfuseApplyList.size() > 0){ - for (XkTransfuseApply transfuseApply : xkTransfuseApplyList) { - String checkSign = transfuseApply.getCheck_sign(); - if(checkSign.equals("Y")) return new Result("-1","该评估单对应的申请单已审核,无法修改或删除!"); - } - } + XkTransfuseApplyBefore xkTransfuseApplyBefore = xkTransfuseApplyBeforeMapper.queryOne(billNo); + if(xkTransfuseApplyBefore == null) return new Result("-1","没有找到对应的评估单!"); + String billStatus = xkTransfuseApplyBefore.getBill_status(); + if(billStatus.equals("2")) return new Result("-1","该单据已使用,无法修改!"); +// XkTransfuseApply xkTransfuseApply = new XkTransfuseApply(); +// xkTransfuseApply.setAssess_bill_no(billNo); +// List xkTransfuseApplyList = xkTransfuseApplyMapper.queryList(xkTransfuseApply); +// if(xkTransfuseApplyList.size() > 0){ +// for (XkTransfuseApply transfuseApply : xkTransfuseApplyList) { +// String checkSign = transfuseApply.getCheck_sign(); +// if(checkSign.equals("Y")) return new Result("-1","该评估单对应的申请单已审核,无法修改或删除!"); +// } +// } return new Result("0","可以修改!"); } } diff --git a/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyServiceImpl.java b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyServiceImpl.java new file mode 100644 index 0000000..7e231b7 --- /dev/null +++ b/blood_bus_doctor/src/main/java/com/czblood/busDoctor/service/impl/TransfuseApplyServiceImpl.java @@ -0,0 +1,18 @@ +package com.czblood.busDoctor.service.impl; + +import com.czblood.busDoctor.service.TransfuseApplyService; +import com.czblood.common.core.domain.Result; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +@Service +@Slf4j +public class TransfuseApplyServiceImpl implements TransfuseApplyService { + + + + @Override + public Result getPatInfo(String beinhosId) { + return null; + } +} diff --git a/blood_bus_doctor/src/main/resources/mapper/TransfuseApplyBeforeMapper.xml b/blood_bus_doctor/src/main/resources/mapper/TransfuseApplyBeforeMapper.xml new file mode 100644 index 0000000..e027ea1 --- /dev/null +++ b/blood_bus_doctor/src/main/resources/mapper/TransfuseApplyBeforeMapper.xml @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file diff --git a/blood_start/src/main/resources/application.yml b/blood_start/src/main/resources/application.yml index b02de0b..14c5044 100644 --- a/blood_start/src/main/resources/application.yml +++ b/blood_start/src/main/resources/application.yml @@ -146,6 +146,10 @@ swagger: # 请求前缀 pathMapping: / +#开启knife4j增强 +knife4j: + enable: true + # 防止XSS攻击 xss: # 过滤开关 diff --git a/sql/operation_dict.sql b/sql/operation_dict.sql new file mode 100644 index 0000000..c42062d --- /dev/null +++ b/sql/operation_dict.sql @@ -0,0 +1,24766 @@ + + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.4', '单根血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.41', '两根血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.42', '三根血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.43', '四根或更多根血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.4301', '四根血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.4302', '四根以上血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.44', '分支血管操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.45', '置入一根血管的支架', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.46', '置入两根血管的支架', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.47', '置入三根血管的支架', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.48', '置入四根或更多根血管的支架', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.4801', '四根血管支架置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.4802', '四根以上血管支架置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.52', '置入或置换经静脉入左心室冠状静脉系统', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.61', '颅外血管经皮血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6101', '经皮颈动脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6102', '经皮椎动脉球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.62', '颅内血管经皮血管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6201', '经皮基底动脉球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6202', '经皮交通动脉血管球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.63', '颈动脉支架经皮置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6301', '脑保护伞下颈动脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.64', '其他颅外动脉支架经皮置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.65', '颅内血管支架经皮置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6501', '大脑中动脉支架经皮置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.6502', '基底动脉支架经皮置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.66', '经皮冠状动脉腔内血管成形术[PTCA]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.7', '髋关节置换修复术,双髋臼和股骨成分', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.73', '髋关节修复术伴仅髋臼衬垫置换和(或)股骨头', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.7301', '人工股骨头修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.74', '髋轴面,金属与聚乙烯', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.75', '髋轴面,金属与金属', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.76', '髋轴面,陶瓷与陶瓷', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.7601', '黑金股骨头', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.77', '髋轴面,陶瓷与聚乙烯', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.78', '髋轴面,陶瓷与金属', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.8', '膝关节置换修复术,全部(所有成分)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.81', '膝关节置换修复术,胫骨成分', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.82', '膝关节置换修复术,股骨成分', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.8201', '膝关节置换修复术,股骨成分伴胫骨(衬垫)置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.83', '膝关节置换修复术,髌骨成分', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.84', '全膝关节置换修复术,胫骨置入(衬垫)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.85', '髋关节表面置换,全部,髋臼和股骨头', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.86', '髋关节表面置换,部分的,股骨头', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.87', '髋关节表面置换,部分的,髋臼', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('0.871', '双眼皮手术(重睑)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.4400x001', '血管分叉部位的操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.5000x001', '双心室起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.5500x014', '经皮桡动脉药物洗脱支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6100x008', '经皮颈总动脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6100x012', '经皮颈静脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6200x005', '经皮大脑中动脉球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6300x005', '经皮颈动脉远端保护装置置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6300x006', '经皮颈动脉覆膜支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6400x009', '经皮椎动脉支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6500x008', '经皮颅内动脉支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6500x010', '经皮颅内动脉远端保护装置置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6600x004', '经皮冠状动脉球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.6600x008', '经皮冠状动脉药物球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7000x001', '全髋关节假体翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7100x001', '髋关节髋臼假体翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7200x001', '髋关节股骨假体翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7300x001', '髋关节髋臼衬垫和股骨头翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7300x002', '髋关节髋臼衬垫翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.7300x003', '髋关节股骨头翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.8500x001', '全髋关节表面置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('00.8600x001', '股骨头表面置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.2400x005', '开颅探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.2400x009', '颅内脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.2400x013', '硬脑膜外血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.2400x018', '硬脑膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.2500x003', '颅骨清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.3900x009', '脑内血肿清除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.3900x012', '经外侧裂脑内血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.3900x013', '立体定向颅内血肿穿刺引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.3900x016', '脑脓肿穿刺引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5100x001', '开颅蛛网膜剥离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5100x006', '大脑镰脑膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5100x007', '小脑幕脑膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x030', '中颅窝病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x037', '大脑半球病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x038', '大脑深部病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x043', '小脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x044', '小脑桥脑角病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x046', '桥脑小脑角病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x048', '岩斜区病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.5900x049', '枕骨大孔区病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.6x00', '颅骨病损的切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('01.6x01', '颅肉芽肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('02.0300x001', '颅骨骨瓣修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('02.0600x003', '颅骨修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('02.1100x001', '硬脑膜缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('02.3400x002', '脑室-腹腔分流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0100x001', '椎管内异物去除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0100x002', '椎管内病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0100x003', '神经内镜下椎管内病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0100x004', '椎管内外病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0100x005', '椎管外神经根病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x003', '颈椎后路单开门椎管减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x005', '颈椎前路椎管减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x006', '腰椎椎板切除减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x007', '胸椎椎板切除减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x009', '椎管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x010', '椎管减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x014', '椎管钻孔减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x016', '椎间孔切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x023', '胸椎后路椎板切除减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x026', '腰椎后路椎板切除减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x027', '腰椎后路椎板成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x028', '骶椎后路椎管减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.0900x029', '椎管内血肿清除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.4x00x001', '脊髓髓内病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.4x04', '硬脊膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.5300x001', '脊椎骨折复位术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.5900x005', '硬脊膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x00', '脊髓和神经根粘连的松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x00x008', '脊髓终丝切断术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x00x010', '脊髓脊膜松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x00x011', '脊髓栓系松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x01', '脊髓粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x02', '脊髓神经根粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('03.6x03', '脊髓蛛网膜粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.0400x025', '牙槽神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.2x00x001', '肋间神经冷冻镇痛术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.2x05', '脊髓神经根射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.2x06', '椎间孔镜下经侧后路脊神经内侧支射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.2x09', '翼腭神经节破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x00x017', '腓肠神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x00x018', '腋神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x00x020', '隐神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x00x024', '皮神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x00x026', '腓总神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x05', '周围神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x09', '肌皮神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x10', '正中神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x11', '尺神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x12', '桡神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x13', '指神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x15', '坐骨神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x16', '股神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x17', '胫神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.3x18', '腓神经缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x033', '腓浅神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x034', '腓深神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x042', '周围神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x043', '肘管松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x044', '跖管减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.4900x045', '踝管减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.6x00x014', '尺神经前移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.7600x002', '尺神经延迟修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('04.7600x003', '桡神经延迟修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.0200x001', '甲状腺术后切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.0900x004', '颈部探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.0900x005', '甲状舌管切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.2x00', '单侧甲状腺叶切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.2x01', '腔镜下单侧甲状腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.2x02', '单侧甲状腺切除伴甲状腺峡部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.2x03', '单侧甲状腺切除伴他叶部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.2x04', '单侧甲状腺切除伴峡部和其他叶部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x001', '残余甲状腺大部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x003', '单侧甲状腺部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x004', '单侧甲状腺次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x011', '腔镜下甲状腺次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x012', '双侧甲状腺部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.3900x013', '双侧甲状腺次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.4x00', '甲状腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.4x01', '残余甲状腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.4x02', '腔镜下甲状腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.6x00', '舌部甲状腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.7x00', '甲状舌管切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.7x00x003', '甲状舌管瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.7x01', '甲状舌管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.7x02', '甲状舌管瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.8100x002', '腔镜下甲状旁腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('06.8900x005', '移植自体甲状旁腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.2900x003', '肾上腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.3x00', '双侧肾上腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.3x01', '腹腔镜双侧肾上腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.6100x002', '经额垂体部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.6200x003', '经蝶骨垂体部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.7200x003', '拉克氏(Rathke''s)囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.8300x002', '胸腔镜下胸腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('07.9200x001', '胸腺切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2000x003', '眉部瘢痕切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2000x005', '眼睑瘢痕切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2000x006', '眼睑病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2000x009', '眼睑皮肤和皮下坏死组织切除清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2100x001', '睑板腺囊肿刮除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2100x004', '睑板腺脓肿切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2200x003', '眼睑小病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2300x001', '眼睑病损板层切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.2400x001', '眼睑病损全层切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3200x001', '上睑下垂缝线悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3200x002', '上睑下垂异体组织额肌悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3200x003', '上睑下垂额肌悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3300x001', '上睑下垂提上睑肌缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3400x001', '上睑下垂上直肌提吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.3600x002', '上睑下垂眼轮匝肌悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5200x002', '睑缘缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5200x003', '眦缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5200x004', '睑板缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5900x001', '眦移位矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5900X004', '内眦成形术(开眼角手术)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5900x005', '外眦成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5900x006', '眦韧带固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.5900x007', '眦韧带修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.6100x002', '眼睑全厚植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.6100x003', '眼睑中厚植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.6100x004', '游离皮瓣移植眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.7100x001', '眼睑非全层伴睑缘重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.7200x001', '眼睑板层重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.7300x001', '眼睑全层伴睑缘重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.7400x001', '眼睑全层重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8200x001', '眼睑非全层的眼睑裂伤及修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8300x001', '眼睑非全层裂伤修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8400x001', '眼睑全层及睑缘裂伤修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8500x001', '眼睑全层裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8600x002', '眼袋切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8900x002', '异体睑板移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('08.8900x005', '重建眉修整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.0x00', '泪腺切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.0x00x001', '泪囊切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.2200x001', '泪腺部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.3x00', '泪腺其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.3x00x001', '泪腺悬吊术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.3x01', '泪腺修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.3x02', '泪腺加固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.4900x002', '鼻内镜下人工泪管取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.4900x003', '人工泪管取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.5900x001', '泪管切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x00', '泪囊和泪道切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x00x001', '泪管病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x00x006', '泪小管病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x01', '泪囊切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x02', '泪囊病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x03', '泪道病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.6x04', '泪小管切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.7200x001', '泪点修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.7300x001', '泪小管成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.7300x003', '泪小管缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.7300x004', '泪道重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.8100x004', '鼻内镜下鼻腔泪囊造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('09.9900x002', '泪囊瘘口封闭术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.12', '开放性脑膜活组织检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.14', '开放性大脑活组织检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2401', '颅后窝血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2402', '颅骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2403', '延髓前方减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2404', '环枕减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2405', '硬膜外脓肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2407', '颅骨钻孔探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2408', '颅内血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2409', '颅骨钻孔引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.241', '颞肌下减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2411', '颅骨切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2412', '硬脑膜外切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2413', '颅骨去骨瓣减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2414', '颅骨钻孔减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2415', '颅骨切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.25', '其他颅骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2501', '颞骨全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2502', '颞骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2503', '颅骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2504', '颅骨死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.2506', '颅骨骨碎片取除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3108', '硬脑膜下钻孔引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3901', '脑室钻孔引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3902', '脑室切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3906', '内镜下脑血肿引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3907', '脑切开异物取出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.391', '脑血肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.3911', '脑脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.51', '脑膜病损或组织的切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5101', '脑膜部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5102', '经鼻脑膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5103', '经枕脑膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5104', '经额脑膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5105', '脑蛛网膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5106', '脑膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.53', '脑叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5301', '脑叶次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5302', '额叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5303', '颞叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5304', '标准前颞叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.59', '大脑病损或组织的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5901', '脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5902', '鞍区病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5903', '侧脑室病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5905', '后颅窝病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5908', '顶叶病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5909', '额叶病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5911', '经额脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5913', '颞叶病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5914', '经顶脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5915', '经颞脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5916', '经翼点脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5917', '经枕脑病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5918', '颅底病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5923', '小脑半球病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5924', '小脑蚓部病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5925', '脑清创术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.5934', '颅内血管瘤切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('1.594', '枕叶病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.0x00', '切开术去除嵌入结膜异物', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.0x00x001', '结膜切开异物取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.1x00', '结膜其他切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.1x00x001', '结膜切开探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.1x00x002', '结膜引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.2900x001', '结膜囊探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.31', '结膜病损或结膜组织的切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.3101', '结膜病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.3102', '结膜环切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.41', '用游离移植物的睑球粘连修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4100x001', '睑球粘连游离移植物修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4101', '睑球粘连羊膜移植修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4102', '睑球粘连口唇黏膜移植修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.42', '用游离移植物的结膜穹窿重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4200x001', '结膜穹窿游离移植物重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4201', '结膜穹窿羊膜移植重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4202', '结膜穹窿口唇黏膜移植重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.43', '结膜穹窿其他重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4300x002', '结膜穹窿成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.44', '结膜其他游离移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4400x001', '结膜移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4401', '自体结膜移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4402', '异体结膜移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.49', '其他结膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4900x001', '结膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4900x003', '结膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4901', '结膜滤过泡瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4902', '羊膜移植结膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.4903', '结膜囊成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.5x00', '结膜和眼睑粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.5x01', '睑球粘连分离术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.6x00', '结膜裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.6x00x001', '结膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.6x00x002', '结膜撕裂修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.99', '结膜其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.9900x001', '结膜瓣遮盖术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.9900x003', '结膜缝线拆除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('10.9901', '结膜松弛矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.1x00', '角膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.1x01', '角膜切开异物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.31', '胬肉移位术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3100x001', '翼状胬肉转位术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.32', '胬肉切除术伴角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3201', '翼状胬肉切除伴自体干细胞移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3202', '翼状胬肉切除术伴异体干细胞移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3203', '翼状胬肉切除伴羊膜植片移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3204', '翼状胬肉切除术伴丝裂霉素注入', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.39', '胬肉其他切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3900x001', '翼状胬肉切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.3901', '翼状胬肉切除伴结膜移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.41', '机械性去除角膜上皮', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.4100x001', '角膜上皮刮除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.42', '角膜病损的热灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.43', '角膜病损的冷冻疗法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.49', '角膜病损的其他去除或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.4901', '板层角膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.4902', '准分子激光治疗性角膜切削术(LASIK)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.4903', '角膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.51', '角膜裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.5101', '角巩膜瘘缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.52', '角膜手术后伤口裂开修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.53', '用结膜瓣的角膜裂伤或伤口修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.5300x001', '结膜瓣角膜修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.59', '角膜其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.5900x001', '角膜修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.5900x002', '角膜间层烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.5901', '角膜缝线调整术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6', '角膜移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6000x002', '部分角膜缘移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6000x003', '全角膜缘移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.61', '用自体移植物的板层角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.62', '其他板层角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6200x002', '板层角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6200x003', '角膜板层修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.63', '用自体移植物的穿透性角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6300x001', '穿透性自体角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6300x002', '自体角膜转位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.64', '其他穿透性角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6400x001', '穿透性角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6400x002', '羊膜移植的角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.69', '其他角膜移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6900x001', '全层角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6900x002', '人工角膜植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6900x003', '异体角膜缘干细胞移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6901', '角膜干细胞移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.6902', '角膜内皮移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.71', '角膜磨镶术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7100x001', '屈光性角膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7100x002', '准分子激光角膜原位磨镶术[LASIK]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7101', '准分子原位角膜磨镶术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7102', '前弹力层下角膜磨镶术[SBK]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7103', '微型角膜刀法准分子激光角膜上皮瓣下磨镶术(Epi-LASIK)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7104', '准分子激光角膜上皮瓣下磨镶术(LASEK)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.72', '角膜镜片术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.73', '人工角膜', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7300x001', '人工角膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.74', '角膜热成形术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7400x001', '角膜交联术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.76', '表面角膜镜片术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.79', '角膜其他重建术和折射手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7900x001', '角膜基质环植入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7901', '不规则散光矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7902', '角膜植片更换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7903', '羊膜移植眼表重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.7904', '全飞秒微小切口基质透镜切除术(SMILE)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.9100x001', '角膜染色术[墨针]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.92', '去除角膜人工植入物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.9200x001', '植入角膜去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.99', '角膜其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.9900x001', '角膜缝线拆除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.9900x002', '自体角膜缘干细胞取材术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('11.9901', '角巩膜割烙术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12', '去除眼前节眼内异物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.01', '用磁吸法去除眼前节眼内异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.02', '不用磁吸法的去除眼前节眼内异物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.0200x002', '眼前房切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.0200x003', '巩膜异物取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.0200x004', '眼前节非磁性异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.11', '虹膜切开术伴贯穿术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1100x002', '虹膜激光切开贯通术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1101', '虹膜激光打孔术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.12', '其他虹膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1200x001', '虹膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1201', '瞳孔缘剪开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1202', '虹膜激光切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1203', '虹膜括约肌切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.13', '虹膜脱出切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.14', '其他虹膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1400x001', '虹膜部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1400x007', '虹膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1400x008', '瞳孔前膜激光切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1401', '虹膜全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1402', '虹膜激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1403', '虹膜周边切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.1404', '虹膜周边激光切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.31', '虹膜前房角粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.32', '其他虹膜前粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3200x001', '虹膜前粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.33', '虹膜后粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3301', '虹膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.34', '角膜玻璃体粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.35', '瞳孔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3501', '瞳孔膜穿刺术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3502', '瞳孔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3503', '瞳孔切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3504', '瞳孔残膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3505', '滤过泡针拨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.39', '其他虹膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3900x001', '虹膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3900x004', '虹膜还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3901', '虹膜离断缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.3902', '虹膜复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.4', '去除眼前节病损', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.41', '虹膜病损破坏术,非切除法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.4100x001', '眼前房病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.42', '虹膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.4201', '前房机化膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.43', '睫状体病损破坏术,非切除法', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.4300x001', '睫状体病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.44', '睫状体病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.4401', '虹膜睫状体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.52', '眼前房角切开不伴眼前房角穿刺', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.5200x001', '前房角切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.53', '眼前房角切开伴眼前房角穿刺', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.54', '外路小梁切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.55', '睫状体分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.5501', '睫状体切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.59', '其他促进眼内循环', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.5900x001', '房角分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.5900x003', '巩膜静脉窦扩张术[Schlemm''s 管扩张术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.5901', '前房角成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.61', '巩膜环钻术伴虹膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.62', '巩膜热灼术伴虹膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.63', '虹膜钳顿术和虹膜牵引术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6301', '虹膜嵌顿术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.64', '外路小梁切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6400x001', '激光小梁成形术[ALP、KLP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6400x003', '滤帘切除术[小梁切除术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6400x009', '小梁切除术伴人造移植物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6400x010', '滤过道再通术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6401', '氪激光小梁成形术[KLP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6402', '小梁消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6403', '氩激光小梁成形术[ALP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6404', '小梁切除术伴丝裂霉素注入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6405', '非穿透性小梁切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6406', '小梁切除术伴羊膜移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6407', '小梁切除术伴移植物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6408', '非穿透小梁切除术伴移植物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.65', '其他巩膜造口术伴虹膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6500x003', '巩膜灼瘘术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6500x004', '虹膜周边切除伴巩膜造瘘术[谢氏手术]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6501', '巩膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6502', '巩膜下巩膜咬切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6503', '虹膜巩膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.66', '巩膜造口术后修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6601', '滤泡修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.67', '眼房水引流装置置入', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6700x010', '眼压调节器再次置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6701', '青光眼阀取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6702', '青光眼阀修复调位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6703', '前房导管术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6704', '青光眼阀置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.69', '其他造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.6901', '脉络膜上腔巩膜内引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.74', '缩减睫状体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.7401', '睫状体贫血术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.79', '其他青光眼操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.7901', '苏林氏管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.7902', '眼压调节器置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.7903', '眼压调节器修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.7904', '眼压调节器置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.81', '巩膜裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.82', '巩膜造口修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8200x001', '巩膜瘘修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.83', '眼前节手术伤口修复术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8300x002', '眼前节手术伤口修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8301', '结膜瓣修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8302', '巩膜瓣剥离术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8303', '巩膜缝线调整术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8304', '巩膜环扎带修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.84', '巩膜病损切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8400x002', '巩膜咬切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8400x004', '巩膜缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8401', '巩膜灼烙术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8402', '巩膜透热术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8403', '巩膜病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8404', '巩膜冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.85', '用移植物的巩膜葡萄肿修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8500x002', '异体巩膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.86', '巩膜葡萄肿其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8600x001', '巩膜葡萄肿修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.87', '用移植物的巩膜加固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8701', '巩膜异体羊膜填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8702', '巩膜生物胶植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8703', '巩膜外加压术伴填充', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.88', '其他巩膜加固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8800x002', '巩膜移植物加固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8801', '巩膜外加压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8802', '后巩膜加固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.89', '巩膜其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8900x001', '巩膜板层移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8900x007', '巩膜交联术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8901', '巩膜修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8902', '巩膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8903', '巩膜切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.8904', '巩膜切开放液术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.93', '前房上皮延生物的去除或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9301', '前房上皮衍生物去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9302', '前房上皮衍生物破坏', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.97', '虹膜其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9701', '人工虹膜隔取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9702', '人工虹膜隔植入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9703', '虹膜缩短术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.98', '睫状体其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9801', '睫状体缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9802', '睫状体固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9803', '睫状体复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.99', '前房其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9900x004', '滤过泡增生组织切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9900x008', '前房硅油取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9900x009', '滤过泡分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9901', '放射敷贴器取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9902', '放射敷贴器植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9903', '前房成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9904', '前房导管修正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('12.9905', '前房导管取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13', '去除晶状体异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.01', '用磁吸法的去除晶状体异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.02', '不使用磁吸法的去除晶状体异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.0201', '晶状体切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.11', '经颞下入路晶状体囊内摘出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.19', '晶状体的其他囊内摘出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.1900x006', '白内障针吸术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.1900x007', '晶状体囊内摘除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.1900x008', '膜性白内障剪除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.1901', '白内障囊内冷凝摘出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.1902', '白内障囊内摘除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.2x00', '晶状体囊外摘出术,用线形摘出法', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.2x01', '晶状体刮匙摘除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.3x00', '晶状体囊外摘出术,用单纯抽吸(和冲洗术)法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.3x00x001', '晶状体单纯抽吸囊外摘除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.3x01', '创伤性白内障冲洗术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.41', '白内障晶状体乳化和抽吸', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.4100x001', '白内障超声乳化抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.4101', '飞秒激光白内障超声乳化抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.42', '白内障晶状体机械性碎裂术和抽吸,用后入路', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.4200x001', '经后路白内障切割吸出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.43', '白内障晶状体机械性碎裂术和其他抽吸', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.4300x001', '白内障切割吸出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.51', '经颞下入路晶状体囊外摘出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.59', '晶状体其他囊外摘出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.5900x001', '白内障囊外摘除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.64', '后发膜刺开术[复发性白内障]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6400x001', '后发性白内障切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.65', '后发膜切除术[复发性白内障]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6500x002', '后发性白内障切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6501', '晶状体前囊膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6502', '晶状体后囊膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6503', '晶状体后囊膜激光切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.66', '后发膜机械性碎裂术[复发性白内障]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.69', '其他白内障摘出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6900x002', '激光后囊切开术[YAG]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.6901', '残留晶状体皮质切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.7', '置入人工晶状体', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.71', '眼内人工晶状体置入伴白内障摘出术,一期', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.7100x001', '白内障摘除伴人工晶体一期置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.72', '眼内人工晶状体二期置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.7200x001', '人工晶体二期置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.8x00', '去除置入的晶状体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.8x00x003', '人工晶体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9', '晶状体手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9000x004', '后囊切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9000x005', '张力环缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9000x006', '虹膜隔晶体置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9000x007', '人工晶体缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9000x008', '人工晶体前膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9001', '人工晶状体复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9002', '人工晶状体悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9003', '晶状体囊袋张力环植入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.91', '眼内镜假体置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('13.9100x001', '可植入式隐形眼镜置入术[ICL 置入术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14', '去除眼后节异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.01', '用磁吸法去除眼后节异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.0101', '玻璃体异物磁吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.02', '不用磁吸法去除眼后节异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.0200x001', '眼后节异物去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.0200x002', '玻璃体腔异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.0201', '脉络膜切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.0202', '后段眼球壁异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.21', '用透热法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2101', '脉络膜病损透热术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2102', '视网膜病损透热术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.22', '用冷冻疗法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2201', '脉络膜病损冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2202', '视网膜病损冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.23', '用氙弧光凝固法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2301', '脉络膜病损氙弧光凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2302', '视网膜病损氙弧光凝固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.24', '用激光光凝固法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2401', '脉络膜病损激光凝固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2402', '视网膜病损激光凝固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2403', '黄斑光动力学治疗(PDT)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.25', '用光凝固法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.26', '用放射疗法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.27', '用放射源植入法的脉络膜视网膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2700x001', '放射敷贴器置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.29', '脉络膜视网膜病损的其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2900x001', '视网膜剥离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2900x002', '视网膜前膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2900x003', '脉络膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2900x004', '内界膜剥离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2901', '脉络膜病损其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.2902', '视网膜病损其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.31', '用透热疗法的视网膜裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.3101', '视网膜裂孔电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.32', '用冷冻疗法的视网膜裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.3200x001', '黄斑裂孔冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.3200x002', '视网膜裂孔冷冻术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.33', '用氙弧光凝固法的视网膜裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.34', '用激光光凝固法的视网膜裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.35', '用光凝固法的视网膜裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.39', '视网膜裂伤的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.3901', '黄斑裂孔填塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.41', '巩膜环扎术伴有植入物', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.49', '其他巩膜环扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.4900x001', '巩膜环扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.4901', '巩膜环扎术伴空气填塞', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.4902', '巩膜环扎术伴巩膜切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.4903', '巩膜环扎术伴玻璃体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.51', '用透热疗法的视网膜脱离修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5101', '视网膜脱离电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.52', '用冷冻疗法的视网膜脱离修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5200x001', '视网膜脱离冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.53', '用氙弧光凝固法的视网膜脱离修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5300x001', '视网膜脱离氙弧光凝固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.54', '用激光光凝固法的视网膜脱离修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5400x001', '视网膜脱离激光治疗术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.55', '用光凝固法的视网膜脱离修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.59', '视网膜脱离其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5901', '巩膜缩短术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5902', '玻璃体硅油置入术,用于视网膜再附着', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5903', '玻璃体腔注气,视网膜复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5904', '玻璃体气液交换,视网膜复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.5905', '玻璃体腔重水注射术,视网膜复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.6x00', '去除眼后节手术植入物', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.6x00x001', '眼后节置入物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.6x01', '巩膜环扎带取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.6x02', '玻璃体硅油取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.71', '去除玻璃体,前入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7100x001', '前入路玻璃体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.72', '玻璃体的其他去除法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7202', '后入路玻璃体切割术伴替代物注入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7203', '后入路玻璃体切割术伴人工玻璃体置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.73', '经前入路的机械性玻璃体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7300x001', '前入路玻璃体切割术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.74', '其他机械性玻璃体切除术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7401', '后入路玻璃体切割术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7501', '玻璃体硅油填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.79', '玻璃体其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7901', '玻璃体腔探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7902', '玻璃体腔脱位晶状体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7904', '玻璃体腔残留晶体皮质取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.7905', '玻璃体气液交换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x00', '视网膜、脉络膜和后房其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x00x001', '巩膜外环扎带调整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x01', '视网膜下放液术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x02', '视网膜部分剥离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x03', '视网膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x04', '脉络膜上腔放液术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x05', '视网膜松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x06', '视网膜部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x07', '黄斑转位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('14.9x08', '视网膜色素上皮细胞移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.0100x001', '眼外肌活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.11', '一条眼外肌的后徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.12', '一条眼外肌的前徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.13', '一条眼外肌的部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.19', '一条眼外肌从眼球暂时脱离的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.1900x001', '一条眼外肌离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.21', '一条眼外肌的延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.22', '一条眼外肌的缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.29', '一条眼外肌的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.2901', '一条眼外肌的悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.3x00', '两条或两条以上眼外肌暂时从眼球脱离的手术,单眼或双眼', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.3x01', '两条或两条以上眼外肌的后徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.3x02', '两条或两条以上眼外肌的前徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.4x00', '两条或两条以上眼外肌的其他手术,单眼或双眼', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.4x01', '两条或两条以上眼外肌缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.4x02', '两条或两条以上眼外肌悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.5x00', '眼外肌移位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.6x00', '眼外肌手术后的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.7x00', '眼外肌损伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.7x01', '眼肌粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.9x00', '眼外肌和肌腱的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.9x00x001', '眼肌部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.9x00x007', '眼肌探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.9x00x008', '眼睑轮匝肌切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('15.9x01', '眼阔筋膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.01', '眼眶切开术伴有骨瓣', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0101', '外侧开眶术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.02', '眼眶切开术伴置入眼眶植入物', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0200x001', '眼内自膨胀水凝胶注入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.09', '其他眼眶切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0900x004', '一个眶壁减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0900x005', '多个眶壁减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0901', '开眶探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0902', '眶切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0903', '眶减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.0904', '内镜下眶减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.1x00', '去除眼穿透性异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.1x00x001', '眼内异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.1x01', '眶切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.1x02', '内镜下眶内异物取出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.31', '去除眼内容物同时将植入物植入巩膜壳', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.39', '眼球其他内容物剜出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.3900x001', '眼球内容物剜出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.41', '眼球摘除同时伴眼移植物的球囊植入并行肌肉附着术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.4100x002', '眼球摘除伴义眼置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.4101', '眼球摘除伴义眼台置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.42', '眼球摘除术伴其他植入物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.4200x002', '眼球摘除伴植入物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.49', '眼球其他摘除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.4900x001', '眼球摘除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.4901', '隐眼摘除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.51', '去除眼眶内容物剜出术伴去除邻近结构', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.52', '眼眶内容物剜出术伴治疗性去除眶骨', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.59', '其他眼眶内容物剜出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.5900x001', '眼眶内容物剜出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.5901', '眼眶内容物切除伴皮瓣滑行修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.5902', '眼眶内容物剜出术伴颞肌移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.61', '二期眼植入物置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.6100x001', '义眼二期置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.6101', '二期义眼台置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.62', '眼植入物的修复术和再置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.6200x001', '义眼台修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.63', '用移植物的眼摘除腔修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.6300x002', '眼窝凹陷填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.6300x003', '放疗后眼窝凹陷填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.64', '眼摘除腔的其他修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.65', '内容物剜出腔的二期移植物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.66', '内容物剜出腔的其他修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.69', '眼球去除后的其他二期操作', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.71', '去除眼植入物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.7101', '义眼台取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.72', '去除眼眶植入物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.7200x002', '眼硅胶取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.81', '眼眶伤口修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8100x002', '眼眶缺损修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.82', '眼球破裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.89', '眼球或眼眶损伤的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8900x001', '眶骨重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8900x002', '眶内壁重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8901', '眼球修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8902', '内镜下眼眶修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8903', '眼窝成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.8904', '眼眶再造术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.92', '眼眶病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.9201', '内镜下眶内病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.93', '眼病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.9300x001', '眶内脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.9300x003', '眶内病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.98', '眼眶其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.9801', '眼眶清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('16.99', '眼球其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.11', '腹腔镜腹股沟直疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.1100x001', '腹腔镜下单侧腹股沟直疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.12', '腹腔镜腹股沟斜疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.1200x001', '腹腔镜下单侧腹股沟斜疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.13', '腹腔镜腹股沟疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.1300x001', '腹腔镜下经腹膜前腹股沟疝补片修补术(TAPP)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.1300x002', '腹腔镜下全腹膜外腹股沟疝补片修补术(TEP)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.21', '腹腔镜双侧腹股沟直疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.2100x001', '腹腔镜下双侧腹股沟直疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.22', '腹腔镜双侧腹股沟斜疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.2200x001', '腹腔镜下双侧腹股沟斜疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.23', '腹腔镜双侧腹股沟疝修补术,一侧为直疝,另一侧为斜疝,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.2300x001', '腹腔镜下双侧腹股沟疝无张力修补术,一侧直疝一侧斜疝', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.24', '腹腔镜双侧腹股沟疝修补术,伴有移植物或假体', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.2400x001', '腹腔镜下双侧腹股沟疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.31', '腹腔镜多段大肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3101', '腹腔镜直肠乙状结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.32', '腹腔镜盲肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3200x001', '腹腔镜下盲肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.33', '腹腔镜右半结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3300x002', '腹腔镜下升结肠部分切除', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.34', '腹腔镜横结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3401', '腹腔镜横结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.35', '腹腔镜左半结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3500x001', '腹腔镜下降结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.36', '腹腔镜乙状结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3600x001', '腹腔镜下乙状结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.39', '其他腹腔镜大肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3900x002', '腹腔镜下结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3900x003', '腹腔镜下小肠-结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.3901', '腹腔镜巨结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.5500x002', '经皮冠状动脉粥样斑块切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('17.5500x003', '经皮冠状动脉血栓抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0100x002', '耳垂切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.02', '外耳道切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0200x003', '外耳道探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0201', '外耳道切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0202', '外耳道切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.09', '外耳其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0900x002', '耳后切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0901', '耳前切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.0902', '耳廓切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.21', '耳前窦道切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2100x006', '耳前瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2101', '耳前病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.29', '外耳其他病损切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2900x003', '耳廓病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2900x009', '外耳道病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2900x013', '外耳病损冷冻治疗术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2900x016', '耳廓皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2900x018', '耳后瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2901', '外耳病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.2907', '副耳切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.31', '外耳病损根治性切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.39', '外耳其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.3900x003', '耳廓切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.3900x004', '外耳软骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.3901', '外耳切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.4x00', '外耳裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.5x00', '耳前突矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.5x00x001', '招风耳矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.6x00', '外耳道重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.6x00x001', '内镜下外耳道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.6x01', '外耳道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.6x02', '外耳道植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.71', '耳郭建造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7100X001', '耳畸形矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7100x002', '耳廓重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7100x009', '耳廓支架取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7100x010', '义耳置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7101', '杯状耳矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7102', '耳廓支架植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7103', '全耳再造术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7104', '隐耳矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7105', '耳廓缺损修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.72', '断耳再接术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.79', '外耳其他整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7900x002', '耳垂畸形矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7900x008', '乳突植皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7900x009', '耳游离皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7901', '外耳成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7902', '耳廓植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7903', '耳软骨整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7904', '外耳上提术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7905', '耳后皮肤移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.7906', '耳甲腔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00', '外耳其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00x002', '耳前皮肤扩张器置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00x004', '外耳道支架取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00x005', '外耳道支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00x007', '耳后皮肤扩张器置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x00x008', '内镜下镫骨憾动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x01', '外耳道记忆合金支架置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x02', '外耳道记忆合金支架置换术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('18.9x03', '外耳道记忆合金支架取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x00', '镫骨撼动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x00x002', '镫骨板钻孔术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x00x003', '镫骨松动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x01', '镫骨脚切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x02', '耳硬化分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.0x03', '镫骨再撼动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.11', '镫骨切除术伴砧骨置换', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.19', '其他镫骨切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x002', '镫骨部分切除伴脂肪移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x003', '镫骨切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x004', '人工镫骨置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x005', '人工镫骨置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x006', '镫骨足板开窗术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x007', '内镜下镫骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1900x008', '内镜下镫骨足板开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.1901', '镫骨部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.21', '镫骨切除术伴砧骨置换的修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.29', '镫骨切除术的其他修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.2900x001', '镫骨切除术的修正术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.2901', '镫骨粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.2902', '镫骨重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x00', '听骨链的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x00x001', '听骨链撼动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x00x002', '内镜下人工听骨链重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x01', '听骨切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x02', '砧镫关节复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x03', '听骨链重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.3x04', '异体听骨植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x00', '鼓膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x00x002', '鼓膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x00x003', '鼓膜移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x00x004', '内镜下鼓膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x00x005', '内镜下鼓室成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.4x01', '鼓室成形术,I 型', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.52', '鼓室成形术,II 型', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.53', '鼓室成形术,III 型', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.54', '鼓室成形术,IV 型', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.55', '鼓室成形术,V 型', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.6x00', '鼓室成形术的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.6x00x001', '鼓室成形修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x00', '中耳其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x00x006', '乙状窦还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x00x007', '鼓室封闭术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x01', '耳后瘘管修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x02', '中耳成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x03', '乳突肌成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x04', '乳突腔内植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('19.9x05', '乳突瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0201', '颅骨骨折减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0202', '颅骨骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0203', '颅骨骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.03', '颅骨瓣形成', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.04', '颅骨骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0501', '颅骨钛板置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0502', '颅骨钛板置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.0503', '颅骨钛网置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.11', '硬脑膜单纯缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.12', '脑膜其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1201', '硬脑膜缺损修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1202', '脑膜膨出修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1203', '脑脊液漏修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1204', '脑脊液鼻漏修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1205', '脑脊液耳漏修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1206', '脑脊液切口漏修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.1209', '硬脑膜补片修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.3401', '侧脑室腹腔内分流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.3404', '脑室镜下脑室腹腔分流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('2.3405', '腹腔镜下脑室腹腔分流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.01', '鼓膜切开术伴置管', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0100x003', '鼓膜造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0100x005', '鼓室置管术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0100x006', '内镜下鼓膜置管术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.09', '其他鼓膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0900x008', '中耳抽吸术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0901', '鼓膜切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.0902', '鼓膜穿刺术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.1x00', '去除鼓室造口术置管', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.1x01', '鼓膜通气管取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.21', '乳突切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2100x004', '乳突切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2101', '乳突切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.22', '岩锥气房切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2201', '岩尖凿开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.23', '中耳切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2300x001', '鼓室粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2300x002', '上鼓室切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2300x007', '鼓窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2300x009', '中耳切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2301', '鼓室探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2302', '中耳切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.2303', '中耳粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.41', '单纯乳突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.42', '根治性乳突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4200x002', '乳突扩大根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.49', '其他乳突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4900x004', '乳突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4900x007', '上鼓室鼓窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4900x008', '开放式乳突改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4900x009', '完壁式乳突改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4901', '乳突改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.4902', '乳突病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.51', '中耳病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5100x002', '耳后病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5100x003', '鼓室病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5101', '颈静脉球瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5102', '鼓膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.59', '中耳其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5900x003', '岩尖切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5901', '岩锥病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5902', '鼓膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.5903', '内镜下岩尖病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.61', '内耳开窗术(初次)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.6100x004', '半规管阻塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.6101', '半规管开窗术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.6102', '迷路开窗术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.6103', '前庭开窗术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.62', '内耳开窗术的修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.6200x002', '半规管裂修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.71', '内淋巴分流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.79', '内耳其他切开术、切除术和破坏术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7900x001', '迷路减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7900x005', '内耳切开探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7900x006', '迷路切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7901', '内耳切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7902', '内耳病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7903', '内淋巴减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7904', '迷路部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7905', '内耳切开引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.7906', '前庭切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x00', '咽鼓管手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x00x004', '咽鼓管吹张术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x01', '咽鼓管通气术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x02', '咽鼓管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x03', '咽鼓管注药术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x04', '咽鼓管置管术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.8x05', '咽鼓管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.91', '鼓室交感神经切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.92', '乳突切除术的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9201', '乳突术后清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.93', '卵圆窗和圆窗修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9301', '卵圆窗修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9302', '圆窗修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9303', '半规管瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.99', '中耳和内耳其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9901', '人工耳蜗取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9902', '人工耳蜗电极取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('20.9903', '人工耳蜗电极修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.04', '控制鼻出血,用筛动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.05', '控制鼻出血,用(经上颌窦)颌动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.0501', '内镜下蝶腭动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.06', '控制鼻出血,用颈外动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.07', '控制鼻出血,用切除鼻黏膜并在鼻中隔和鼻侧壁植皮', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.0700x001', '鼻黏膜切除止血术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.09', '控制鼻出血,用其他方法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.0902', '鼻出血血管缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.0904', '内镜下鼻中隔黏膜划痕术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x00', '鼻切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x00x002', '鼻切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x00x006', '鼻软骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x01', '鼻腔切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x02', '鼻腔切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x03', '鼻皮肤切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.1x04', '内镜下鼻中隔异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3', '鼻病损切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.31', '鼻内病损局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3101', '鼻息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3102', '内镜下鼻息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3103', '鼻内病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3104', '内镜下鼻内病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.32', '鼻其他病损局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3200x003', '鼻前庭病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3200x007', '鼻死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3200x008', '鼻中隔病损激光烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3200x010', '鼻皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.3201', '鼻部皮肤病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.4x00', '鼻部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.4x01', '鼻切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.5x00', '鼻中隔黏膜下切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.5x00x004', '鼻内窥镜下鼻中隔黏膜下部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.5x01', '内镜下鼻中隔黏膜下切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.61', '用透热疗法或冷冻手术的鼻甲切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6100x002', '鼻甲射频消融术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6100x006', '鼻甲激光烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6101', '鼻甲电烧术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6102', '鼻甲激光切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6103', '鼻甲微波烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6104', '鼻甲冷冻切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.62', '鼻甲骨折术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.69', '其他鼻甲切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6900x009', '鼻内窥镜下鼻甲切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6901', '鼻甲部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6902', '鼻甲切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6903', '内镜下鼻甲部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.6904', '内镜下鼻甲射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.71', '鼻骨折闭合性复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.72', '鼻骨折开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.7200x001', '内镜下鼻骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.81', '鼻裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.82', '鼻瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8200x006', '鼻正中瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8201', '鼻咽瘘管切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8202', '鼻唇瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8203', '口鼻瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.83', '全鼻重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8300x001', '臂部皮瓣鼻再造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8301', '额部皮瓣鼻重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8302', '前臂皮瓣鼻重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.84', '修正性鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8400x002', '鼻内窥镜下鼻中隔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8400x003', '鼻中隔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8400x006', '歪鼻鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8401', '弯鼻鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8402', '驼峰鼻矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.85', '增补性鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x002', '隆鼻伴耳廓软骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x004', '隆鼻伴人工假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x005', '隆鼻伴自体甲状软骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x007', '隆鼻伴自体颅骨外板移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x008', '隆鼻伴自体髂骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x010', '隆鼻伴自体鼻软骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8500x011', '隆鼻伴自体脂肪移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8501', '肋骨移植隆鼻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8502', '硅胶支架植入隆鼻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8503', '鼻甲移植物植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8504', '人造植入物隆鼻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8505', '单纯鞍鼻矫治术(隆鼻术)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.86', '局限性鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8600X004', '鼻翼缺损修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8601', '鼻翼矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8602', '鼻唇沟皮瓣修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8603', '鼻尖成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.87', '其他鼻成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8700x003', '鼻唇沟成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8700x004', '鼻甲成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8700X005', '鼻小柱及鼻孔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8700x008', '鼻内窥镜下鼻甲成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8700x009', '内镜下前后鼻孔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8701', '后鼻孔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8702', '前鼻孔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.88', '其他中隔成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8801', '鼻中隔穿孔修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8802', '鼻中隔软骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.89', '鼻其他修补术和整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8900x002', '鼻植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8900x003', '断鼻再接术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8900x004', '再造鼻修整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.8901', '鼻翼上提术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.91', '鼻粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9101', '内镜下鼻腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.99', '鼻其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9900x002', '鼻清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9900x005', '鼻腔缩窄术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9900x006', '鼻腔穿刺抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9901', '鼻腔扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('21.9902', '鼻植入物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.12', '鼻窦开放性活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.2x00', '鼻内上颌窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.2x00x009', '鼻内窥镜下上颌窦根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.2x01', '内镜下上颌窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.2x02', '内镜下上颌窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.31', '根治性上颌窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.3100x002', '上颌窦根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.39', '其他经鼻外上颌窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.3900x002', '上颌窦开窗术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.3900x003', '上颌窦探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.41', '额窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4100x005', '鼻外额窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4101', '内镜下额窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.42', '额窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4200x005', 'Draf Ⅱa 型手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4200x006', 'Draf Ⅱb 型手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4200x007', 'Draf Ⅲ型手术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4200x008', 'Draf Ⅰ型手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4200x009', '鼻内窥镜下经鼻额窦底切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4201', '额窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.4202', '内镜下额窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5', '鼻窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5000x004', '鼻窦切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5001', '鼻窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5002', '内镜下鼻窦扩大术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.51', '筛窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5101', '筛窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5102', '内镜下筛窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5103', '内镜下筛窦切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.52', '蝶窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5201', '蝶窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5202', '蝶窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5203', '内镜下蝶窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5204', '内镜下蝶窦探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5205', '内镜下蝶窦切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.53', '多个鼻窦切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5300x004', '鼻内窥镜下多个鼻窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.5301', '内镜下全组鼻窦开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6', '鼻窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6001', '鼻窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6002', '内镜下鼻窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.61', '经考德威尔-卢克入路上颌窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.62', '经其他入路上颌窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6200x004', '上颌窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6201', '内镜下上颌窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.63', '筛窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6300x011', '鼻内窥镜下钩突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6300x012', '筛窦部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6301', '内镜下筛窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6302', '筛窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6303', '内镜下筛窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.64', '蝶窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6401', '内镜下蝶窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6402', '蝶窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.6403', '内镜下蝶窦病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.71', '鼻窦瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7100x001', '鼻窦瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7100x004', '上颌窦瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7101', '口腔鼻窦瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7102', '内镜下鼻窦瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.79', '鼻窦其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7900x002', '鼻窦骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7900x003', '上颌窦提升术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7901', '鼻窦骨修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7902', '额鼻管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.7903', '鼻窦成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.9x00', '鼻窦其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.9x01', '额窦置管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('22.9x02', '鼻窦造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.11', '拔除残根', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.19', '其他手术拔牙', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.1900x003', '拔牙术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.1900x006', '阻生齿拔除术伴翻瓣', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.1900x007', '阻生齿拔除术不伴翻瓣', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.1901', '全口牙拔除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.1902', '阻生牙拔除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.4900x001', '牙冠延长术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.6x00', '假牙置入', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.6x00x002', '义齿种植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.6x00x003', '义齿种植一期手术(种植体固定钉置入术)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.6x00x004', '义齿种植二期手术(种植体基桩连接术)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.72', '根管治疗伴根尖切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.73', '根尖切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.7300x001', '根尖病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('23.7301', '根尖搔刮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x00', '牙龈或牙槽骨的切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x00x002', '牙槽切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x00x003', '牙龈切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x01', '根尖囊肿切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x02', '牙龈切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x03', '牙槽切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.0x04', '牙髓管切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.2x00', '牙龈成形术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.2x01', '牙龈成形术伴移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.31', '牙龈病损或组织的切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.3100x003', '牙龈病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.3101', '牙周病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.32', '牙龈裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.3200x001', '牙龈缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.39', '牙龈其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.3900x001', '牙龈沟加深术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.3900x002', '牙龈翻瓣术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x00', '颌骨上牙病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x00x002', '牙源性颌骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x01', '颌骨上牙囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x02', '牙齿囊肿袋形缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x03', '牙周囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x04', '根尖囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x05', '牙槽病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.4x06', '牙源性皮瘘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x00', '牙槽成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x00x003', '牙槽植骨成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x00x005', '牙槽切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x01', '牙槽修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x02', '牙槽嵴植骨修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x03', '牙槽部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x04', '牙槽骨修整术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.5x05', '牙槽嵴裂植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.6x00', '牙暴露', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.6x01', '牙导萌术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.6x02', '牙冠龈盖切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.6x03', '牙嵌顿结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.8x03', '牙弓修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.8x04', '牙间隙裂闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.91', '唇颊沟或舌沟的延伸或加深术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.9101', '唇颊沟牵伸术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.9102', '唇颊沟加深术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.9103', '舌沟牵伸术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.9104', '舌沟加深术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.9105', '口腔前庭成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('24.99', '其他牙手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.02', '开放性舌活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.0201', '舌楔形活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.1x00', '舌病损或组织切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.1x01', '舌病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.1x02', '舌病损破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.1x03', '舌射频治疗术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.2x00', '舌部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.2x01', '半舌切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.3x00', '舌全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.4x00', '根治性舌切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.4x00x001', '舌扩大性切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.51', '舌裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5100x001', '舌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.59', '舌其他修补术和整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5900x002', '舌根射频消融术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5900x008', '舌修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5900x009', '颏舌肌前移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5900x010', '舌根牵引固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5900x011', '舌骨悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5901', '舌筋膜悬吊术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5902', '舌悬吊术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5903', '道格拉斯手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5904', '舌根牵引伴舌骨悬吊术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5905', '舌移植皮瓣修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.5906', '舌体舌根减容术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.91', '舌系带切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.9100x001', '舌系带延长术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.9101', '舌系带整形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.92', '舌系带切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.93', '舌粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.94', '其他舌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.9400x001', '舌切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.99', '舌的其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('25.9900x001', '舌系带成形术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.0x00', '涎腺或管的切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.0x00x002', '唾液腺切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.0x00x004', '唾液腺导管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.0x01', '腮腺切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.12', '开放性涎腺或管的活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.1200x001', '直视下腮腺活检术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.1200x002', '直视下唾液腺活检术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.21', '涎腺囊肿袋形缝术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2100x001', '唾液腺造袋术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2101', '颌下囊肿袋形缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.29', '涎腺病损的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2901', '腮腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2902', '涎腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2903', '舌下腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2904', '颌下腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2905', '颌下腺导管结石去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.2906', '副腮腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3', '涎腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.31', '部分涎腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3100x008', '腮腺深叶切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3100x009', '腮腺浅叶切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3101', '腮腺部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3102', '腮腺叶切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3103', '舌下腺部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3104', '颌下腺部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3105', '副腮腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.32', '全部涎腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3201', '腮腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3202', '舌下腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.3203', '颌下腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.41', '涎腺裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4100x001', '唾液腺缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.42', '涎腺瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4200x001', '唾液腺瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4200x002', '腮腺导管瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.49', '涎腺或管的其他修补术和整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x001', '下颌下腺移植术后导管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x005', '腮腺管口移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x006', '唾液腺管修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x007', '下颌下腺自体移植腺体减量术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x008', '下颌下腺导管口转位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x009', '唇腺自体移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4900x010', '颊腺自体移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4901', '颌下腺自体移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4902', '腮腺管吻合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4903', '腮腺导管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4904', '颌下腺导管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4905', '腮腺管移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.4906', '腮腺脱细胞异体真皮补片修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.99', '涎腺或管的其他手术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.9900x001', '腮腺导管再通术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('26.9901', '腮腺导管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x00', '面和口底引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x01', '颌间隙引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x02', '面部引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x03', '颌下切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x04', '颊部切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x05', '颏下切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x06', '口底切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x07', '舌下腺切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x08', '咽旁间隙切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x09', '唇切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.0x10', '面部脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.1x00', '腭切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.1x01', '腭切开探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.1x02', '翼腭窝切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.31', '硬腭病损或组织的局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3101', '硬腭病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3102', '硬腭射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3103', '腭囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3104', '硬腭部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.32', '硬腭病损或组织的广泛切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3200x001', '硬腭病损广泛切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3201', '牙槽骨隆突切除修整术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3202', '腭广泛切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.3203', '腭全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.41', '唇系带切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.42', '唇病损广泛切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.43', '唇病损或组织的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4300x010', '唇部皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4301', '唇病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4303', '厚唇成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.49', '口的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4900x007', '口底病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4900x009', '口腔病损激光烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4900x014', '软腭病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4900x018', '磨牙后区病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4900x019', '口角病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4901', '口腔黏膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4902', '颌下区病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4903', '颊内部病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4904', '软腭病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4905', '鼻唇病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4906', '口腔病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.4909', '软腭射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.491', '软腭切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.51', '唇裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.52', '口的其他部分裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.53', '口瘘管闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5301', '腭瘘管修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5302', '唇瘘修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5303', '颊部瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.54', '裂唇修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5401', '唇裂二期修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.55', '唇和口的全层皮肤移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5500x002', '唇全厚植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.56', '唇和口的其他皮肤移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5600x002', '唇中厚植皮术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5601', '口内皮肤移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.57', '唇和口的带蒂皮瓣或皮瓣移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5700x005', '交叉唇瓣转移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5701', '唇皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5702', '口内皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5703', '唇带蒂皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.59', '口的其他整形修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5900x011', '口形矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5900x017', '唇黏膜瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5900x018', '口腔黏膜瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5900x019', '口腔黏膜游离移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5900x020', '颊肌黏膜瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5901', '口角缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5902', '交叉唇瓣断蒂术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5903', '唇成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5904', '口轮匝肌功能重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5905', '口鼻通道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5906', '上颌重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5907', '小口开大术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5908', '口内重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5909', '唇瘢痕松解术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.591', '口成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5911', '下唇缺损修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5912', '口底重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5913', '唇外翻矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5914', '巨口矫形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.5915', '唇缺损修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.61', '腭裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.62', '腭裂矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6200x002', '后推法腭裂矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6200x003', '腭裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6201', '腭裂修补术伴悬雍垂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.63', '腭裂修补术后的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6300x002', '腭裂术后继发畸形矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6301', '腭裂二期修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6302', '腭裂上提术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.64', '腭植入物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.69', '腭的其他整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6900x003', '软腭激光烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6900x004', '咽腭弓延长成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6900x007', '悬雍垂-软腭-咽成形术[UPPP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6900x008', '舌腭弓延长成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6901', '腭垂-软腭成形术[LAUP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6902', '腭咽成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6903', '硬腭成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6904', '软腭成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6905', '腭瓣修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6906', '悬雍垂腭咽成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6907', '腭咽激光成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6908', '腭瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.6909', '腭咽射频成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.71', '腭垂切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.72', '腭垂切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.7201', '腭垂部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.7202', '悬雍垂激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.73', '腭垂修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.79', '腭垂的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.7901', '悬雍垂病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.91', '唇系带切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9100x001', '唇系带切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9101', '唇系带成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.99', '口腔其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x001', '半侧颜面萎缩矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x005', '面部病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x006', '面横裂矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x007', '面瘫矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x009', '面斜裂矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9900x010', '颊系带切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9901', '颊脂肪垫去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9902', '颏下病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9903', '颊脂垫修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('27.9904', '颅颌面裂矫形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.0x00x002', '扁桃体周围切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.2x00', '扁桃体切除术不伴腺样增殖体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.2x00x002', '扁桃体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.2x00x003', '支撑喉镜下扁桃体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.2x04', '内镜下扁桃体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.3x00', '扁桃体切除术伴腺样增殖体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.3x01', '扁桃体伴腺样体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.3x02', '扁桃体部分切除伴腺样体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.4x00', '扁桃腺残体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.5x00', '舌扁桃体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.5x02', '内镜下舌扁桃体部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x00', '腺样增殖体切除术不伴扁桃体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x00x001', '鼻内镜下经鼻腺样体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x00x002', '腺样体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x00x004', '支撑喉镜下残余腺样增殖体体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x00x005', '鼻内镜下腺样体消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x02', '内镜下腺样体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.6x03', '内镜下残余腺样增殖体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.91', '扁桃体和腺样增殖体切开去除异物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.92', '扁桃体和腺样增殖体病损的切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.9200x002', '扁桃体病损射频消融术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.9201', '扁桃体病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.9202', '腺样增殖体病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('28.99', '扁桃体和腺样增殖体的其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.0x00x001', '咽部切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.0x00x003', '咽部切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.0x00x005', '咽瘘切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.0x00x006', '咽切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.2x00', '鳃裂囊肿或遗迹切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.2x00x001', '鳃裂囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.31', '环咽肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.32', '咽憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3201', '咽食管憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.33', '咽切除术(部分)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3300x001', '下咽切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3300x002', '部分咽切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3301', '梨状窝切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.39', '咽病损或组织的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x001', '鼻咽病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x007', '支撑喉镜下鼻咽病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x010', '下咽病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x012', '咽部病损激光烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x017', '咽颌淋巴烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3900x019', '咽旁间隙病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3901', '咽部病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3902', '咽旁病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3903', '翼腭窝病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3904', '咽部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3905', '支撑喉镜下咽部病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3906', '支撑喉镜下咽部病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3908', '内镜下鼻咽病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.3909', '内镜下梨状窝病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x00', '咽整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x00x003', '下咽成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x00x004', '咽成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x01', '咽重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x02', '鼻咽腔闭锁矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x03', '咽射频减容术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.4x04', '鼻咽成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.51', '咽裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.52', '鳃裂瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.5200x002', '鳃裂瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.53', '咽其他瘘管的闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.5300x002', '咽瘘缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.5301', '咽瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.5302', '咽食管瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.54', '咽粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.59', '咽的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.5901', '咽后壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.91', '咽扩张', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.9100x001', '咽扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.9101', '鼻咽扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.92', '舌咽神经切断', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.9200x001', '舌咽神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.9200x002', '舌下神经切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('29.99', '咽的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.01', '去除椎管异物', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.02', '椎板切除术部位再切开', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.09', '椎管其他探查术和减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0901', '椎管探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0903', '脊神经根探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0904', '椎间孔减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0905', '脊神经根减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0906', '椎管切开引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0908', '椎间盘粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0909', '椎管扩大成形术,单开门', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.091', '椎管扩大成形术,双开门', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0911', '椎板切开减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.0912', '椎板切除减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.32', '脊髓或脊膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.3201', '硬脊膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.3202', '脊髓活组织检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.52', '脊髓脊膜膨出修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.5301', '脊椎骨折切开复位内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.5302', '颈椎骨折切开复位内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.5304', '胸椎骨折切开复位内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.5305', '腰椎骨折切开复位内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('3.5905', '脊髓空洞填塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.01', '喉囊肿的袋形缝合术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.09', '喉病损或组织的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x016', '支撑喉镜下声门病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x021', '会厌病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x024', '梨状窝病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x038', '喉病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x039', '支撑喉镜下喉病损激光烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0900x040', '声门病损烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0901', '声带病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0902', '喉病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0903', '内镜下会厌病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0904', '内镜下会厌病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0905', '内镜下声带病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0906', '内镜下声带病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0907', '内镜下声带病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0908', '内镜下声带剥离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0909', '内镜下喉病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.091', '支撑喉镜下声带显微缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.0911', '支撑喉镜下喉病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.1x00', '半喉切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.21', '会厌切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2100x002', '支撑喉镜下会厌切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2100x003', '会厌软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2101', '会厌扩大切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.22', '声带切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2201', '声带部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2202', '声带扩大切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2203', '内镜下声带部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2204', '内镜下声带切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.29', '其他部分喉切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x001', '垂直喉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x002', '喉杓状软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x003', '喉部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x009', '支撑喉镜下喉软骨切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x011', '环状软骨-舌骨固定术(次全喉切除)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x012', '环状软骨-舌骨-会厌固定术(次全喉切除)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x013', '喉环状软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2900x014', '甲状软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2901', '舌骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2902', '舌骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2903', '室带部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2904', '喉软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2905', '喉软骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2906', '喉裂开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2907', '额侧喉部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2908', '声门上喉部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2909', '垂直喉部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.291', '外侧喉部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2911', '喉次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.2912', '支撑喉镜下杓状软骨切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.3x00', '全部喉切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.3x01', '全喉扩大切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.3x02', '喉咽切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.3x03', '喉咽食管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.3x04', '残余喉切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.4x00', '根治性喉切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('30.4x00x002', '全喉切除伴根治性淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.0x02', '声带脂肪移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.0x03', '内镜下声带脂肪移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.0x05', '支撑喉镜下声带充填术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x00x001', '支撑喉镜下喉切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x00x005', '会厌切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x00x008', '环状软骨前切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x01', '喉探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x02', '气管探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x03', '气管切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.3x04', '内镜下声带切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.45', '开放性喉或气管活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.4501', '开放性气管活组织检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.4502', '开放性喉活组织检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x00', '气管病损或组织的局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x00x003', '气管病损激光烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x00x012', '气管节段切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x00x013', '纵隔镜下气管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x00x014', '气管隆突病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x01', '气管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x02', '气管部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x03', '气管楔形切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.5x04', '内镜下气管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.61', '喉裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.62', '喉瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6201', '喉气管瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6202', '喉气管瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.63', '喉造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.64', '喉骨骨折修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.69', '喉的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6900x007', '声带固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6900x008', '声带转位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6900x013', '喉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6901', '喉结成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6902', '喉成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6903', '喉功能重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6904', '喉双蒂双肌瓣修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6905', '环甲膜缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6906', '会厌成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6907', '甲状软骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6908', '声门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6909', '声带外移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.691', '声带成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6911', '内镜下声带成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6912', '内镜下环杓关节复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.6913', '内镜下喉成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.71', '气管裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7100x001', '气管修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.72', '气管外瘘管闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7201', '气管造口闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.73', '气管其他瘘管的闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7300x001', '气管瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7301', '气管食管瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7302', '内镜下气管瘘封堵术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.74', '气管造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7400x001', '气管造口扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.75', '气管重建术和人工喉建造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7500x002', '气管成形伴人工喉重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7500x004', '人工气管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7501', '发音重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7503', '气管重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7504', '人工喉建造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.79', '气管其他修补术和整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7900x004', '气管狭窄松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7900x005', '气管隆突成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7900x006', '气管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7901', '气管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7902', '人造气管移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7903', '气管狭窄修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.7904', '气管膜部修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.91', '喉神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9100x001', '喉返神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9100x002', '喉返神经解剖术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.92', '气管或喉粘连的松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9201', '气管粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9202', '声带粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9203', '喉粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9204', '内镜下声带粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.93', '喉或气管支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9301', '气管支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9302', '喉支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9303', '内镜下气管支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9304', '内镜下喉支架置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.95', '气管食管造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9501', '内镜下气管食管造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.98', '喉的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9801', '声门扩大术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9802', '喉扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9803', '喉 T 型管置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('31.9808', '支撑喉镜下喉蹼切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.0901', '支气管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.0902', '支气管病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2', '胸腔镜下肺组织或病损的切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2001', '胸腔镜下肺楔形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2002', '胸腔镜下肺大疱切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2003', '胸腔镜下肺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.21', '肺大疱折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2100x001', '肺大泡缝扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2100x005', '胸腔镜下肺大泡缝扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2101', '胸腔镜下肺大疱折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.22', '肺容量减少术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2201', '胸腔镜下肺减容术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2800x008', '胸腔镜下肺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.29', '肺病损或组织的其他局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2900x016', '余肺楔形切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2901', '肺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2902', '肺大泡切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2903', '肺袖式切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2904', '肺楔形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.2905', '肺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.3', '胸腔镜肺叶节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.3001', '胸腔镜下肺叶部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.3900x003', '全余肺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.3901', '肺节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.3902', '肺叶部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.41', '胸腔镜下肺叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4100x002', '胸腔镜下复合肺叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4101', '胸腔镜下肺叶伴邻近肺叶节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.49', '其他肺叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4900x002', '肺叶伴肺段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4900x003', '余肺肺叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4901', '肺叶伴邻近肺叶节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4902', '肺叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.4903', '肺叶袖状切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.5', '胸腔镜下肺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.5000x001', '胸腔镜下全肺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.5001', '胸腔镜下全肺切除术伴纵隔淋巴清扫', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.59', '其他和未特指的肺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.5900x001', '全肺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.5901', '全肺切除术伴纵隔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.6x00', '胸腔结构的根治性清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.6x00x002', '肺叶切除术伴淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('32.9x00', '其他的肺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.0x00', '支气管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x00', '肺切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x00x003', '胸腔镜下肺内异物取出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x00x004', '胸腔镜下肺切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x01', '肺大疱外引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x02', '肺切开血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x03', '肺切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x04', '肺内异物取出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x05', '胸腔镜下肺切开引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.1x06', '胸腔镜下肺切开血肿清除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.2', '胸腔镜肺活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.25', '开放性支气管活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.2500x002', '胸腔镜下支气管活检术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.2500x003', '直视下支气管活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.2600x001', '肺穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.28', '开放性肺活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.2800x001', '开胸肺活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.31', '膈神经破坏术用于肺萎陷', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3100x001', '膈神经破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.32', '人工气胸用于肺萎陷', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3201', '胸膜腔注气术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3202', '胸腔镜下胸腔注气术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.33', '气腹用于肺萎陷', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.34', '胸廓成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3401', '部分胸廓成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3402', '胸廓改良成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3403', '胸膜外胸廓成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3901', '肺粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3902', '胸膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.3903', '胸腔镜下胸膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.41', '支气管裂伤缝合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.4100x002', '胸腔镜下支气管裂伤缝合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.43', '肺裂伤闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.4300x002', '肺裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.4803', '支气管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.49', '肺其他修补术和整形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.4901', '肺修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.4902', '胸腔镜下肺修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.92', '支气管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.9200x002', '胸腔镜下支气管结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('33.9902', '胸壁粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.01', '胸壁切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0100x002', '胸膜外引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0101', '胸壁切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0102', '胸壁切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0103', '胸壁切开血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.02', '探查性胸廓切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0200x001', '开胸探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0200x003', '胸腔镜中转开胸探查术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.03', '近期胸廓切开部位的再切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0300x001', '近期开胸术后再开胸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0301', '胸腔术后再切开止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.05', '创建胸膜腹膜分流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.06', '胸腔镜胸膜腔引流', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0900x006', '胸膜切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0900x010', '胸腔镜下脓胸清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0900x011', '开胸止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0901', '胸膜切开血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0902', '胸腔切开脓肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0903', '胸腔切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0904', '开胸异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0905', '胸腔镜下胸腔切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.0906', '胸腔镜下胸腔切开止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x00', '纵隔切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x01', '纵隔切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x02', '纵隔探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x03', '纵隔切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x04', '纵隔血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.1x05', '胸腔镜下纵隔切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.2', '胸腔镜胸膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.21', '经胸膜胸腔镜检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.2100x001', '胸腔镜检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.2301', '胸腔镜下胸壁活组织检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.2502', '胸腔镜下纵隔活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.26', '开放性纵隔活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.2700x001', '膈肌活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.3x00', '纵隔病损或组织的切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.3x02', '纵隔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.3x04', '胸腔镜下纵隔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.4x00', '胸壁病损的切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.4x00x008', '胸腔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.4x01', '胸壁病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.4x02', '胸壁部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.4x03', '胸腔镜下胸壁病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.51', '肺皮质剥除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5100x004', '脏层胸膜剥除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5100x005', '肺门胸膜剥除松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5101', '胸膜剥脱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.52', '胸腔镜肺剥离', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5902', '胸膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5903', '胸膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.5904', '胸腔镜下胸膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.6x00', '胸膜划痕术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.6x01', '胸膜硬化术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.6x02', '胸腔镜下胸膜划痕术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.71', '胸壁裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7101', '胸壁清创缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.72', '胸廓造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.73', '胸其他瘘管闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7300x001', '食管-胸膜瘘闭合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7301', '支气管胸膜瘘闭合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7302', '胸壁瘘管闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7900x001', '胸壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.7900x002', '关胸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.81', '横膈病损或横膈组织切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8101', '横膈病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8102', '横膈部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.82', '横膈裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8200x002', '膈肌缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8400x003', '膈肌修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8900x002', '膈肌脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.8900x003', '膈肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9203', '胸腔镜下化学胸膜固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.93', '胸膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9302', '胸腔镜下胸膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9901', '胸腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9902', '胸膜固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9904', '胸腔镜下胸腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('34.9905', '胸腔镜下胸膜固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('36.04', '冠状动脉内血栓溶解药输注', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('36.0601', '冠状动脉药物涂层支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('36.07', '药物洗脱冠状动脉支架置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('36.0700x004', '经皮冠状动脉覆膜支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.2600x001', '术中心脏电生理检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.3302', '心脏射频消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.3401', '经导管心脏射频消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.71', '首次经静脉入心室置入导线[电极]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.72', '首次经静脉入心房和心室置入导线[电极]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.73', '首次经静脉入心房置入导线[电极]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.78', '暂时性经静脉起搏器系统的置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8', '首次或置换永久起搏器置入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8000x001', '永久起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8000x002', '永久起搏器置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8001', '心脏起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8101', '单腔永久起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8201', '频率应答单腔永久起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8301', '双腔永久起搏器置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8501', '单腔永久起搏器置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8601', '频率应答单腔永久起搏器置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('37.8701', '双腔永久起搏器置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5701', '十二指肠静脉曲张结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.59', '下肢静脉曲张的结扎术和剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5900x003', '大隐静脉主干激光闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5900x005', '下肢静脉剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5900x008', '大隐静脉高位结扎电凝术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5900x010', '大隐静脉射频消融术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5901', '大隐静脉高位结扎和剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5902', '大隐静脉曲张结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5903', '大隐静脉曲张剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5904', '小隐静脉曲张结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5905', '小隐静脉曲张剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5906', '小隐静脉高位结扎和剥脱术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.5907', '大隐静脉曲张分段切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6', '血管的其他切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6000x010', '静脉内异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6000x011', '躯干部血管瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6000x012', '血管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6000x013', '血管球瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6100x001', '脊髓畸形血管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6100x002', '颅内动脉瘤切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6101', '颅内血管畸形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6102', '脑血管瘤切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.62', '头和颈部其他血管的其他切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6200x002', '颈静脉瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6200x003', '颈静脉扩张切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6200x005', '颈动脉瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6200x006', '颈外动脉瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6200x007', '颈外静脉瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6201', '颈部血管瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.6302', '上肢血管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.7x04', '下腔静脉滤器置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8200x003', '颈内动脉结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8200x005', '颈内静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8200x006', '颈前静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8200x007', '颈总动脉结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8200x008', '颈外动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8201', '颈动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8202', '颈静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8203', '舌动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8300x004', '上肢血管结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8301', '尺动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8302', '肱动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8303', '桡动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8503', '肋间动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8600x004', '腹壁血管结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8600x005', '腹膜血管结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8601', '大网膜动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8602', '胃动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8603', '胆囊动脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8604', '肠系膜动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8605', '肝动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8606', '脾动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8607', '髂动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8608', '肾动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8609', '子宫动脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8700x002', '卵巢动静脉高位结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8700x008', '子宫动静脉高位结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8700x009', '腹腔镜下卵巢动静脉高位结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8701', '肠系膜静脉结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8703', '肾静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8704', '门静脉结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.8705', '阴茎静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('38.9304', '股静脉穿刺置管术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.3100x002', '肱动脉修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.4902', '下腔静脉滤器取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5000x011', '下腔静脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5000x025', '上肢静脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5000x026', '下肢静脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5000x031', '下肢动脉球囊扩张成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5000x032', '动静脉造瘘后球囊扩张(用于肾透析)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5001', '锁骨下动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5002', '肾动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5004', '股动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5005', '髂动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5007', '髂静脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5009', '腘动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5011', '胫动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5012', '腔静脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5013', '桡动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5015', '腓动脉球囊血管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5100x007', '脑动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5101', '颈动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5102', '大脑前动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5103', '大脑中动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5104', '后交通动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5105', '基底动脉瘤夹', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5106', '椎动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5107', '前交通动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5108', '小脑上动脉瘤夹闭术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5300x007', '上肢动静脉瘘栓塞术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5300x014', '躯干动静脉瘘栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.5301', '动静脉瘘栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7200x006', '大脑中动脉(MCA 分叉部)动脉瘤栓塞术(AN)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7200x007', '硬脑膜动静脉瘘栓塞术(DAVF)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7200x008', '椎动静脉瘘栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7203', '经导管颅内动脉瘤栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7204', '经导管颅内动脉瘤弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7205', '经导管颅内动脉瘤支架辅助栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7206', '经导管颈动脉瘤栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7207', '经导管颈动脉瘤弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7208', '经导管颈动脉瘤支架辅助栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7209', '经导管颅内血管栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.721', '经导管颅内血管弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7211', '经导管颈部血管栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7212', '经导管颈部血管弹簧圈栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7213', '经导管椎动脉栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7214', '经导管椎动脉弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7215', '经导管硬脑膜血管栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7216', '经导管颈内动脉海绵窦瘘栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.74', '头和颈部血管梗阻的血管内去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7400x001', '经皮颅内静脉取栓术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7400x002', '经皮颅内动脉取栓术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7400x003', '经皮颈静脉取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7400x004', '经皮颈动脉取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7401', '经导管颅内血管血栓去除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7402', '经导管入脑前血管血栓去除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.75', '头、颈部血管内裸弹簧圈栓塞或闭合', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7501', '经导管颅内血管裸弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7502', '经导管入脑前血管裸弹簧圈栓塞术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x013', '锁骨下动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x017', '结肠动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x020', '肾动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x025', '股动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x028', '经皮肠系膜上动脉取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x030', '经皮肺动脉取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7900x047', '经皮下肢动脉弹簧圈栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7901', '经导管肾血管栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7902', '经导管支气管动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7903', '经导管肝动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7904', '经导管脾动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7905', '经导管下肢血管栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.7907', '经导管上肢血管栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.791', '经导管动静脉畸形介入栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9000x011', '髂静脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9000x012', '锁骨下静脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9000x034', '锁骨下动脉覆膜支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9005', '上腔静脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9008', '锁骨下动脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9009', '股动脉支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.91', '血管松解', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9100x002', '下腔静脉松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9100x003', '下腔静脉粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.9800x003', '颈内动脉瘤破裂止血术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('39.99', '血管其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.01', '听神经瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0101', '经乙状窦后入路听神经瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0204', '上牙槽神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0304', '周围神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0305', '指神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0306', '趾神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0405', '喉返神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0408', '周围神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0414', '坐骨神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0418', '正中神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0419', '尺神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.042', '桡神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0421', '指神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0422', '肋间神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0423', '股神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0424', '胫神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0425', '腓总神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0707', '颅神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0708', '视神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0709', '三叉神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.071', '面神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0711', '听神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0713', '周围神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0718', '坐骨神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0719', '尺神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.072', '桡神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0721', '腓总神经病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.0732', '肋间神经切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4101', '三叉神经微血管减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4204', '面神经微血管减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4209', '舌咽神经微血管减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.43', '腕管松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.44', '跗管松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.49', '其他周围神经或神经节粘连的减压术或松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4907', '正中神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4908', '尺神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4909', '桡神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.491', '指神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4911', '坐骨神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4912', '下肢外周神经减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4913', '股神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4914', '胫神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4915', '腓总神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4916', '腓神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4917', '足神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4918', '跖间神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.4919', '趾间神经松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7409', '尺神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.741', '桡神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7412', '正中神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7415', '坐骨神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7416', '股神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7417', '胫神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('4.7418', '腓神经吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.0x00', '淋巴结构切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.0x00x001', '淋巴结切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.1100x003', '腹腔镜下淋巴结活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.1100x004', '纵隔镜下淋巴结活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.21', '深部颈淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.22', '乳房内淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.23', '腋淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.24', '腹股沟淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.29', '其他淋巴结构单纯性切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x002', '单纯淋巴结切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x008', '颌下淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x017', '腹膜后淋巴管瘤(囊肿)切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x018', '肠系膜淋巴管瘤(囊肿)切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x019', '肢体淋巴管瘤(囊肿)切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x020', '腹壁淋巴管瘤(囊肿)切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x021', '颈淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x022', '淋巴结切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x023', '髂外血管旁淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2900x024', '颏下淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2901', '锁骨上淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2902', '肺门淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2903', '肺门纵膈淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2904', '纵隔淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2905', '腹主动脉旁淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2906', '腹腔淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2907', '腹膜淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2908', '肠系膜淋巴结切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.2909', '盆腔淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.291', '淋巴管瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00', '区域性淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00x001', '淋巴结扩大性区域性切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00x002', '淋巴结区域性切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00x003', '腔镜下区域性腋窝淋巴结区域切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00x004', '皮下淋巴抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.3x00x005', '功能性颈淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.4', '根治性颈淋巴结清扫', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.4000x003', '舌骨上颈淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.41', '根治性颈淋巴结清扫,单侧', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.42', '根治性颈淋巴结清扫,双侧', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5', '淋巴结根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.51', '腋下淋巴结根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5101', '腔镜腋下淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.52', '主动脉旁淋巴结根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.53', '髂淋巴结根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5301', '腹腔镜髂淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.54', '根治性腹股沟清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5400x001', '腹股沟淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5400x002', '腹腔镜下腹股沟淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5400x003', '腹股沟浅淋巴结清扫术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.59', '其他淋巴结根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5900x010', '腹腔镜下腹膜后淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5900x011', '舌骨上淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5901', '颌下淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5902', '食管旁淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5903', '锁骨上淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5904', '胸内淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5905', '肺门淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5906', '纵隔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5907', '腹膜后淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5908', '腹腔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5909', '肠系膜淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.591', '盆腔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5911', '腹腔镜腹腔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5912', '腹腔镜盆腔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5913', '胸腔镜胸内淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.5914', '胸腔镜纵隔淋巴结清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.64', '胸导管结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.6401', '胸腔镜胸导管结扎术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.9x00', '淋巴结构其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.9x00x013', '淋巴管瘘结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.9x00x014', '淋巴管瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.9x00x015', '淋巴管瘘粘连术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('40.9x00x016', '淋巴管瘤注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.2x00', '脾切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.2x01', '脾切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.2x02', '脾切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.2x03', '腹腔镜脾切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.2x04', '腹腔镜脾囊肿开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.33', '开放性脾活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.41', '脾囊肿袋形缝术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.42', '脾病损或组织切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.4200x002', '脾病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.43', '部分脾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.4301', '腹腔镜脾部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.5x00', '全脾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.5x01', '腹腔镜全脾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.93', '副脾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9301', '腹腔镜副脾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.94', '脾移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.95', '脾修补术和整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9501', '脾修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9502', '脾固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9503', '脾缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9504', '腹腔镜脾修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.98', '骨髓其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.99', '脾其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('41.9900x002', '脾套网缩小术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.0901', '食管切开异物取出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.0902', '食管切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.2400x001', '食管镜下活检', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.25', '开放性食管活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.31', '食管憩室局部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3100x001', '食管憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3101', '胸腔镜食管憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.32', '食管的其他病损或食管组织的局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3200x003', '食管病损氩气刀治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3201', '食管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.33', '内镜食管病损或食管组织切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3300x006', '胃镜下食管病损电灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3301', '内镜食管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3302', '内镜食管病损氩离子凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3304', '内镜食管息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3306', '内镜食管黏膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3307', '内镜食管静脉曲张结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3308', '内镜食管静脉曲张硬化剂注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3309', '内镜食管静脉曲张组织胶注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.3311', '胸腔镜食管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.39', '食管病损或食管组织的其他破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.4', '食管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.41', '部分食管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.4100x009', '胸腔镜下食管部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.42', '全食管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.82', '食管裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.83', '食管造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.84', '食管瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.85', '食管狭窄修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.8501', '食管吻合口狭窄修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.8502', '食管镜食管狭窄整复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.8701', '食管膈肌瓣修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.89', '食管其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.91', '食管静脉曲张结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.9100x002', '食管静脉曲张套扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.92', '食管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.9201', '贲门括约肌球囊扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.9900x00', '内镜下食管支架调整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('42.9901', '食管支架调整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.0x00', '胃切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.0x00x003', '胃切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.0x01', '胃切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.0x02', '胃切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.0x03', '腹腔镜下胃切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.19', '其他胃造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.1900x003', '永久性胃造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.1900x005', '暂时性胃造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.1900x006', '腹腔镜下胃造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.3x00', '幽门肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.3x00x003', '幽门环肌层切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.3x00x004', '幽门肌层切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.3x01', '腹腔镜下幽门肌层切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.41', '内镜下胃病损或胃组织切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x011', '胃镜下贲门病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x013', '胃镜下胃病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x014', '胃镜下胃病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x015', '胃镜下贲门病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x016', '胃镜下胃病损硬化术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4100x020', '内镜下胃底静脉曲张组织胶注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4101', '内镜下胃病损氩离子凝固术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4102', '内镜下胃病损套扎治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4105', '内镜下胃息肉切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4107', '内镜下胃黏膜下剥离术[ESD]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4108', '内镜下胃黏膜切除术[EMR]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4109', '内镜下胃静脉曲张结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.411', '内镜下胃静脉曲张硬化术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.42', '胃其他病损或组织的局部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4201', '贲门病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4202', '胃病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.4203', '腹腔镜下胃病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.49', '胃病损或组织的其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x00', '胃部分切除术伴食管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x00x003', '贲门部分切除伴食管-胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x00x007', '胃近端切除伴食管-胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x01', '胃大部切除伴食管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x02', '贲门切除伴食管胃弓下吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.5x03', '腹腔镜下胃大部切除伴食管-胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.6x00', '胃部分切除术伴胃十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.6x00x005', '胃幽门切除术伴胃-十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.6x00x006', '胃远端切除术伴胃-十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.6x01', '胃大部切除伴胃十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.6x02', '腹腔镜胃大部切除伴胃十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.7x00', '胃部分切除术伴胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.7x00x001', '胃大部切除伴胃-空肠吻合术[Billroth Ⅱ式手术]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.7x01', '残胃部分切除伴胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.7x02', '胃肠吻合口切除伴胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.7x03', '腹腔镜胃大部切除伴胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.81', '胃部分切除术伴空肠移位术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.82', '腹腔镜垂直(袖状)胃切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.8201', '腹腔镜胃部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.89', '其他胃部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.8901', '胃部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.8902', '胃底横断术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.8903', '胃袖状切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.8904', '腹腔镜胃楔形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.91', '胃全部切除术伴肠间置术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9101', '全胃切除伴空肠间置术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9102', '腹腔镜辅助全胃切除伴空肠间置术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.99', '其他胃全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9900x002', '残胃切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9900x003', '腹腔镜下胃切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9900x004', '根治性胃切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9901', '全胃切除伴食管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9902', '残胃切除,食管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9903', '全胃切除伴食管十二肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9904', '腹腔镜辅助全胃切除伴食管-十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('43.9905', '腹腔镜辅助全胃切除伴食管-空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44', '迷走神经切断术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.0001', '腹腔镜下迷走神经切断术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.01', '迷走神经干切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.02', '高选择性迷走神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.0200x002', '壁细胞迷走神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.03', '其他选择性迷走神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.0300x001', '选择性迷走神经切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.1100x00', '术中胃镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.1300x00', '胃镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.1301', '超声内镜下胃检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.14', '闭合性[内镜的]胃活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.1401', '胃镜下活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.1402', '超声内镜下胃活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.15', '开放性胃活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.21', '经切开术的幽门扩张术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.2100x001', '幽门切开扩张术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.29', '其他幽门成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.2900x001', '幽门成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.2901', '幽门粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.31', '高位胃搭桥术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.38', '腹腔镜下胃肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3801', '腹腔镜下胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3802', '腹腔镜下胃十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3803', '腹腔镜下幽门旷置术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3804', '腹腔镜下胃转流术(LRYGB)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.39', '其他胃肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3900x003', '胃-十二指肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3901', '胃转流术[胃-肠搭桥吻合术]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3902', '胃十二指肠吻合术(旁路)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3903', '胃空肠吻合术(旁路)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.3904', '幽门旷置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4', '消化性溃疡缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.41', '胃溃疡部位的缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4100x008', '胃溃疡穿孔修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4101', '胃溃疡修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4102', '腹腔镜胃溃疡穿孔修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.42', '十二指肠溃疡部位的缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4200x001', '腹腔镜下十二指肠溃疡穿孔修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4200x003', '十二指肠溃疡穿孔修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4201', '十二指肠溃疡修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4202', '腹腔镜十二指肠溃疡修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4300x001', '胃镜下十二指肠止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4300x002', '胃镜下胃出血止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4301', '内镜下胃氩气刀止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4302', '内镜下胃钛夹止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4303', '内镜下十二指肠钛夹止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.44', '经导管栓塞,用于胃或十二指肠出血', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4400x001', '食管-胃底静脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4400x004', '胃动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4400x005', '胃十二指肠动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4401', '十二指肠动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4402', '经导管胃静脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4403', '经导管胃动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.49', '其他胃或十二指肠出血的控制', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4901', '胃切开止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.4902', '十二指肠切开止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x00', '胃吻合术的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x00x002', '胃-空肠吻合口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x00x004', '胃-十二指肠吻合口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x00x005', '胃-十二指肠吻合口修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x01', '胃肠吻合口修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.5x02', '食管胃吻合口成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.61', '胃裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6100x003', '胃破裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.62', '胃造口闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.63', '其他胃瘘闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6300x001', '胃-结肠瘘闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6301', '胃结肠瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6302', '胃空肠瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.64', '胃固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6401', '腹腔镜下胃固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.65', '胃十二指肠成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6500x001', '食管-贲门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6500x002', '食管-胃成形术[Belsey 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6500x003', '胸腔镜下贲门松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6501', '贲门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.66', '其他操作,用于创建食管胃括约肌功能', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6600x001', '胃底折叠术[Nissen 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6600x002', '胃-贲门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6601', '胃底折叠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.67', '腹腔镜操作用于创建食管胃括约肌功能', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6701', '腹腔镜胃底折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.68', '腹腔镜下胃成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6800x002', '腹腔镜下胃束带术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6801', '腹腔镜垂直束带胃成形术(VBG)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.69', '胃的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6901', '胃修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.6902', '腹腔镜胃修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.91', '胃静脉曲张结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9100x001', '贲门周围血管离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9100x002', '门奇静脉断流术[食管-胃底静脉结扎术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9100x005', '腹腔镜下胃静脉曲张离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9101', '胃底静脉结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.92', '胃的手术中操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9201', '胃扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.95', '腹腔镜下胃限制性操作', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9501', '腹腔镜下可调节胃束带术(LAGB)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9502', '垂直绑带式胃减容术(VGB)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.96', '腹腔镜下胃限制性操作的修复术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9601', '腹腔镜可调节胃束带置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9602', '腹腔镜可调节胃束带修正术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.97', '腹腔镜下去除胃限制性装置', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9701', '腹腔镜可调节胃束带去除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.98', '腹腔镜调节可调节的胃限制性装置的体积', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9801', '腹腔镜可调节胃束带放松术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.9802', '腹腔镜下可调节胃束带紧缩术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('44.99', '胃的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('443334', '测试一个数据', '2', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45', '肠切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0001', '肠切开取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0002', '肠切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.01', '十二指肠切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0100x005', '十二指肠切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0101', '十二指肠切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0102', '十二指肠切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.02', '小肠的其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0200x001', '空肠切开取石', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0201', '小肠切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0202', '小肠切开取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0203', '小肠切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0204', '腹腔镜小肠切开减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.03', '大肠切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0300x002', '大肠切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0300x003', '横结肠切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0301', '大肠切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0302', '大肠切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.0303', '大肠切开减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.1300x006', '超声内镜下十二指肠检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.1402', '内镜下回肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.15', '开放性小肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.23', '结肠镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.2302', '电子结肠镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.2303', '超声结肠镜检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.25', '闭合性[内镜的]大肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.2501', '结肠镜下大肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.26', '开放性大肠活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3001', '内镜下十二指肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3005', '内镜下十二指肠黏膜切除术(EMR)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.31', '十二指肠病损的其他局部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3101', '十二指肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3102', '十二指肠憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.32', '十二指肠病损的其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3200x001', '十二指肠病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.33', '小肠病损或组织的局部切除术,除外十二指肠', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3300x006', '空肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3300x009', '回肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3300x012', '内镜下小肠黏膜切除术(EMR)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3301', '小肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3302', '小肠憩室切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3303', '腹腔镜小肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3304', '腹腔镜麦克尔憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3401', '内镜下空肠病损氩气刀治疗术(APC)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.3402', '内镜下回肠病损氩气刀治疗术(APC)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.41', '大肠病损或组织的切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4100x001', '大肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4101', '结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4102', '横结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4103', '降结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4104', '乙状结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4105', '盲肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4106', '阑尾病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4107', '升结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4108', '盲肠憩室切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.42', '内镜下大肠息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4200x003', '纤维结肠镜下结肠息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4201', '内镜下乙状结肠息肉切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.43', '内镜下大肠其他病损或组织破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x002', '腹腔镜下结肠病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x003', '腹腔镜下乙状结肠病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x007', '腹腔镜下结肠止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x008', '结肠镜下结肠病损电凝术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x009', '内镜下结肠黏膜下剥离术(ESD)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x010', '内镜下结肠黏膜切除术(EMR)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x012', '内镜下经黏膜下隧道结肠病损切除术(STER)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4300x013', '内镜下结肠病损氩气刀治疗术(APC)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4301', '内镜下乙状结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4302', '内镜下结肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4303', '内镜下盲肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4304', '内镜下结肠止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4305', '内镜下直肠止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4306', '内镜下直肠钛夹止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.49', '大肠病损的其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4900x001', '大肠病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4900x003', '结肠病损高频电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4900x005', '结肠病损激光烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.4901', '结肠袋形缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.5', '肠段分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.51', '小肠段分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.5100x001', '回肠部分切除用于间置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.5101', '小肠部分切除用于间置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.52', '大肠段分离术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.5201', '结肠部分切除术用于间置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.61', '小肠多节段部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.62', '小肠其他部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6200x001', '腹腔镜下回肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6200x002', '腹腔镜下空肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6201', '小肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6202', '十二指肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6203', '十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6204', '空肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6205', '空肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6206', '回肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6207', '回肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.6208', '腹腔镜下小肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.63', '小肠全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.71', '开放性和其他大肠多节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7100x001', '大肠多节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.72', '开放性和其他盲肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7200x002', '回盲部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7200x004', '盲肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7201', '回盲部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7202', '盲肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.73', '开放性和其他右半结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7300x006', '右半结肠姑息性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7300x007', '右半结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7301', '回肠结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7302', '右半结肠根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7303', '升结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7304', '升结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.74', '开放性和其他横结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7400x003', '横结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7401', '横结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.75', '左半结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7501', '左半结肠根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.76', '开放性和其他乙状结肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7600x008', '乙状结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7600x018', '巨结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7600x022', '小肠-结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7601', '乙状结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7602', '降结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7603', '降结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.79', '其他和未特指大肠部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7900x001', '结肠次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7901', '结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.7902', '小肠结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.81', '腹腔镜腹内全结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.8100x001', '腹腔镜下结肠次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.82', '开放性腹内全结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.83', '其他和未特指的腹内全结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9', '肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.91', '小肠小肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9100x006', '小肠-小肠端侧吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9100x008', '空肠-空肠端侧吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9101', '空肠空肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9102', '回肠回肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9103', '十二指肠空肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9104', '空肠回肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.92', '小肠直肠残端吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.93', '其他小肠-大肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9300x012', '小肠-升结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9300x013', '小肠-大肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9300x014', '小肠-结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9300x015', '回肠贮袋肛管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9301', '回肠-横结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9302', '回肠-降结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9303', '回肠-盲肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9304', '回肠-升结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9305', '回肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9306', '回肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9307', '空肠-横结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9308', '空肠-降结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9309', '空肠-升结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.931', '空肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.94', '大肠-大肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9400x004', '降结肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9400x009', '盲肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9400x012', '升结肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9400x016', '横结肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9401', '横结肠-降结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9402', '横结肠-乙状结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9403', '降结肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9404', '结肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9405', '乙状结肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9406', '升结肠-横结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9407', '升结肠-降结肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9408', '升结肠-直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.95', '肛门吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9501', '结肠-肛门吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9502', '回肠-肛门吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9503', '降结肠-肛门吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('45.9504', '乙状结肠-肛门吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.01', '小肠外置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0100x001', '回肠外置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0101', '十二指肠外置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0102', '襻式回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.02', '小肠外置段切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.03', '大肠外置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0300x001', '肠外置术[Mikulicz 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0300x003', '盲肠外置术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0300x004', '结肠旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0301', '肠外置术(一期)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0302', '襻式结肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.04', '大肠外置段的切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0400x002', '肠外置段的切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0401', '肠外置术(二期)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.0402', '结肠襻切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.1', '结肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.1000x007', '腹腔镜下结肠造口术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.11', '暂时性结肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.1100x002', '腹腔镜下结肠暂时性造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.13', '永久性结肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.1301', '腹腔镜乙状结肠永久性造口术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.14', '结肠造口的延迟性切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.2', '回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.2001', '腹腔镜回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.21', '暂时性回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.22', '节制性回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.23', '其他永久性回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.2300x001', '回肠永久性造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.2301', '腹腔镜永久性回肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.24', '回肠造口的延迟性切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.31', '其他肠造口的延迟性切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.39', '其他肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3900x002', '空肠造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3900x006', '腹腔镜下十二指肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3900x007', '腹腔镜下小肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3901', '空肠(营养性)造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3903', '输入襻造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3904', '小肠造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.3905', '腹腔镜空肠造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4', '肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.41', '小肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4101', '回肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4102', '空肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4103', '回肠造口周围疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.42', '结肠造口周围疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4201', '腹腔镜结肠造口周围疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4202', '腹腔镜结肠造口周围疝无张力成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.43', '大肠造口的其他修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4300x004', '横结肠造口重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4300x005', '结肠造口扩大术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4301', '结肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4302', '横结肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.4303', '降结肠造口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5', '肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.51', '小肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5100x002', '回肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5100x004', '空肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5100x006', '小肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5101', '回肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5102', '空肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.52', '大肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5200x006', '结肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5200x010', '乙状结肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5200x011', '横结肠造口还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5201', '盲肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5202', '结肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5203', '乙状结肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.5204', '横结肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6', '肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.61', '小肠固定至腹壁', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6101', '回肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.62', '小肠其他固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6200x003', '小肠排列术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6200x004', '小肠外排列术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6201', '小肠折叠术[Noble 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.63', '大肠固定至腹壁', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6301', '盲肠-升结肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6302', '乙状结肠-腹壁固定术[Moschowitz 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.64', '大肠其他固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6401', '盲肠固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6402', '乙状结肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.6403', '结肠固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.71', '十二指肠裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.72', '十二指肠瘘的闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.73', '小肠裂伤缝合术,除外十二指肠', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7300x005', '小肠破裂修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7301', '空肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7302', '回肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7303', '腹腔镜小肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.74', '小肠瘘修补术,除外十二指肠', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7400x004', '小肠瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7401', '小肠-小肠吻合口瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7402', '小肠-大肠吻合口瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7403', '空肠瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7404', '小肠腹壁瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7405', '小肠-乙状结肠瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.75', '大肠裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7500x004', '结肠破裂修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7501', '横结肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7502', '乙状结肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7503', '盲肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7504', '升结肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7505', '降结肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7506', '腹腔镜下结肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.76', '大肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7601', '乙状结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7602', '盲肠瘘修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7603', '结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7604', '腹腔镜下结肠瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.79', '肠的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7900x009', '腹腔镜下十二指肠成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7901', '肠穿孔修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7902', '十二指肠成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7903', '小肠浆膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.7904', '十二指肠憩室修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8', '腹内肠操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8001', '肠系膜扭转复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8002', '肠套叠复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.81', '小肠腹内操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8101', '小肠扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8102', '小肠套叠复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.82', '大肠腹内操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8201', '大肠扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.8202', '大肠套叠复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.87', '结肠支架的其他非内镜置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.91', '乙状结肠肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.92', '结肠其他部分肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.9200x001', '结肠肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.9201', '结肠隔膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.93', '小肠吻合口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.9300x001', '十二指肠空肠吻合口切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.9301', '空肠回肠吻合口切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.94', '大肠吻合口修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.9401', '直肠吻合口狭窄切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.97', '肠移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('46.99', '肠的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.01', '腹腔镜下阑尾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.09', '其他阑尾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.0901', '阑尾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.0902', '阑尾残端切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.11', '腹腔镜下附带阑尾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.19', '其他的附带阑尾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.1900x001', '附带阑尾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.2x00', '阑尾脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.2x01', '腹腔镜下阑尾脓肿引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.91', '阑尾造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.92', '阑尾瘘管闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.99', '阑尾其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('47.9901', '阑尾内翻包埋术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x00', '直肠切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x00x002', '直肠切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x00x003', '直肠切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x01', '直肠减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x02', '肛门闭锁减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x03', '直肠直线切开术[PANAS]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.0x04', '直肠脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.1x00', '直肠造口', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.23', '硬式直肠乙状结肠镜检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.2300x003', '超声内镜下直肠检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.2301', '直肠乙状结肠超声内镜检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.24', '闭合性[内镜的]直肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.2401', '直肠乙状结肠镜下直肠活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.25', '开放性直肠活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.31', '直肠病损或组织的根治性电凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3101', '直肠病损根治性电凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.32', '直肠病损或组织的其他电凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3200x003', '直肠病损电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3201', '直肠病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.33', '直肠病损或组织的激光破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3301', '直肠病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.34', '直肠病损或组织的冷冻破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3401', '直肠病损冷冻术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.35', '直肠病损或组织的局部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3500x001', '内镜下直肠病损氩离子凝固术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3501', '直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3502', '经肛门直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3503', '经骶尾直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3504', '经阴道直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3505', '直肠后壁病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3506', 'Kraske 术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3507', '腹腔镜直肠病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3508', '内镜下直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3509', '内镜下直肠黏膜下剥离术(ESD)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.351', '内镜下直肠黏膜切除术(EMR)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3513', '经肛门内镜下直肠病变微创手术[TEM]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3514', '经肛门内镜直肠显微手术(TaTEM)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.3601', '直肠息肉切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4', '直肠拖出切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.41', '索夫直肠黏膜下切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4101', '直肠黏膜下切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4102', '经肛门直肠黏膜环切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4103', '直肠黏膜下环切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4104', '直肠内拖出切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4105', '直肠粘膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4106', '腹腔镜直肠黏膜下切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.42', '腹腔镜直肠拖出切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.43', '开放性直肠拖出切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.49', '直肠其他拖出切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4900x002', '直肠切除术[Swenson 手术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4900x003', '直肠-腹-会阴拖出切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4901', '会阴-直肠拖出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4902', '经前会阴超低位直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4903', '腹腔镜辅助经前会阴超低位直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4904', '斯文林直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.4905', 'Bacon-Black 术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.5', '腹会阴直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.51', '腹腔镜下腹会阴直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.5100x002', '腹腔镜下经肛提肌外腹会阴直肠联合切除术[LELAPE 手术]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.52', '开放性腹会阴直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.5201', '肛提肌外腹会阴直肠联合切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.59', '其他腹会阴直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.5900x001', '直肠全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.61', '经骶直肠乙状结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6100x001', '腹腔镜下经腹直肠乙状结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6101', '腹腔镜下经骶直肠乙结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.62', '直肠前切除术同时伴结肠造口术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6201', '腹腔镜下直肠前切除伴结肠造口术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.63', '其他直肠前切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6301', '直肠前切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6302', '腹腔镜下直肠前切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6303', '腹腔镜低位直肠前切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.64', '直肠后切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6400x001', '经骶尾直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.65', '杜哈梅尔直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6500x001', '腹-会阴拖出术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.69', '直肠其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6900x002', '腹腔镜下直肠根治术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6900x004', '经肛门直肠病损根治术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6900x007', '直肠根治术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6901', '经骶经肛门括约肌直肠病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6902', '直肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6903', '直肠-乙状结肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6904', '直肠乙状结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6905', '直肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6906', '残余直肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6907', '全结肠直肠(包括肛门)切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6908', '残余直肠肛管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6909', '腹腔镜下直肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.691', '腹腔镜直肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6911', '腹腔镜直肠-乙状结肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6912', '腹腔镜全结肠直肠(包括肛门)切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.6913', '腹腔镜帕克氏术(Park''s 术)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.71', '直肠裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7101', '腹腔镜直肠破裂修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.72', '直肠造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.73', '其他直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7300x001', '会阴-直肠瘘闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7301', '会阴直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7302', '肛门直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7303', '直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.74', '直肠直肠吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7401', '经肛门吻合器直肠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.75', '腹直肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7501', '直肠脱垂里普斯坦修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.76', '其他直肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7600x001', '直肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7600x002', '直肠骶骨上悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7600x008', '直肠黏膜悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7601', '直肠脱垂注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7602', '直肠脱垂德洛姆修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7603', '直肠脱垂悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7604', '直肠乙状结肠固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7605', '腹腔镜直肠悬吊术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.79', '直肠其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7900x003', '直肠修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.7901', '陈旧性产科直肠裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.81', '直肠周围组织切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8100x001', '直肠瘘管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8101', '直肠周围脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8102', '直肠阴道隔膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.82', '直肠周围组织切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8201', '直肠阴道隔病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8202', '直肠-阴道隔切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8203', '经阴直肠阴道隔病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8204', '盆腔直肠病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8205', '腹腔镜下直肠阴道隔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.8206', '腹腔镜下直肠后囊肿切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.91', '直肠狭窄切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.92', '肛门直肠肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.9201', '肛门直肠肌部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.93', '直肠周围瘘的修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('48.99', '直肠和直肠周围组织的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.01', '肛周脓肿切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0100x004', '肛周脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0101', '肛周脓肿穿刺抽吸术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.02', '肛周组织的其他切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0200x001', '肛周组织下部切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0201', '肛门周围组织切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.03', '肛周皮赘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.04', '肛周组织的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0400x008', '肛周脓肿根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0400x009', '肛周病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0401', '肛周脓肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.0402', '肛门周围组织切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.11', '肛门瘘管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.12', '肛门瘘管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.39', '肛门病损或组织的其他局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3900x015', '肛门皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3900x017', '肛窦电凝术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3901', '肛裂切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3902', '肛窦切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3903', '肛裂切开挂线术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3904', '肛门病损激光切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3905', '肛门病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3906', '肛乳头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.3907', '肛管病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.43', '痔烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4301', '痔夹闭术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.44', '痔冷冻破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.45', '痔结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4501', '超声引导下痔结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.46', '痔切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4601', '痔切除术伴肛门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.47', '血栓性痔清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4701', '血栓痔剥离术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.49', '痔的其他操作', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4900x002', '经肛门吻合器痔切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4900x003', '吻合器痔上黏膜环切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4901', '痔上直肠黏膜环形切除吻合术(PPH 术)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4902', '肛垫悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.4903', '开环式微创肛肠吻合器手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.51', '左侧肛门括约肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.52', '后肛门括约肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.5200x002', '肛门后侧括约肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.59', '其他肛门括约肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.5900x001', '耻骨直肠肌部分切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.5901', '肛管内括约肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.5902', '肛门括约肌切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.5903', '肛门括约肌切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.6x00', '肛门切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.6x01', '肛门括约肌切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.71', '肛门裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.72', '肛门环扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.73', '肛门瘘管闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7300x001', '高位肛瘘挂线术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7301', '肛瘘挂线术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7302', '肛瘘结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.74', '股薄肌移植,用于肛门失禁', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7400x001', '股薄肌移植肛门失禁矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.75', '人工肛门括约肌植入术或修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7501', '人工肛门括约肌植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7502', '人工肛门括约肌修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.76', '人工肛门括约肌去除', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.79', '肛门括约肌的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7900x005', '肛门括约肌修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7901', '肛门陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7903', '肛门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.7904', '腹腔镜下肛门成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.91', '肛门隔膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.92', '皮下电子肛门刺激器的置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.93', '肛门的其他切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9300x001', '肛管探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9300x002', '肛门后切术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9300x003', '肛门扩张术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9300x004', '肛门切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9301', '肛门挂线去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9302', '肛门切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.94', '肛门脱垂复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.95', '肛门(手术后)出血控制', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9500x002', '手术后肛门出血缝扎止血术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.99', '肛门的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('49.9901', '肛管皮肤移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x00', '肝切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x00x004', '腹腔镜下肝切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x00x008', '肝被膜下血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x00x016', '肝探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x01', '肝切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x02', '肝切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x03', '腹腔镜下肝囊肿开窗引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x04', '腹腔镜下肝脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.0x05', '腹腔镜下肝异物去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.1100x005', '经皮肝穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.12', '开放性肝活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.14', '腹腔镜下肝活组织检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.21', '肝病损的袋形缝合术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.22', '部分肝切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x003', '肝Ⅱ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x004', '肝Ⅲ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x005', '肝Ⅳ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x006', '肝Ⅴ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x007', '肝Ⅵ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x008', '肝Ⅶ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2200x009', '肝Ⅷ段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2201', '肝楔形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2202', '肝段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2203', '腹腔镜下肝段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2204', '腹腔镜下肝楔形切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2205', '腹腔镜下肝部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2206', '腹腔镜下活体取肝术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.23', '肝病损或组织的直视消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2301', '肝病损微波消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2302', '肝病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2303', '胆囊床病损射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.25', '肝病损或组织的腹腔镜下消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2501', '腹腔镜下肝病损微波消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2502', '腹腔镜下肝病损射频消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2503', '腹腔镜超声引导下肝病损射频消融术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.26', '肝病损或组织的其他和未特指消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.29', '肝病损的其他破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2900x020', '腹腔镜下肝内无水酒精注射术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2900x021', '腹腔镜下肝抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2901', '肝病损氩氦刀治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2902', '肝病损冷冻治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2903', '肝病损酒精固化治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2904', '肝病损离体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2905', '肝病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2906', '肝病损超声刀治疗', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2907', '肝病损微波治疗', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2908', '肝病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.2909', '腹腔镜下肝病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.291', '腹腔镜下肝病损烧灼术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x00', '肝叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x01', '右半肝切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x02', '左半肝切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x03', '肝叶部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x04', '全肝叶切除术伴其他肝叶部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x05', '腹腔镜下肝叶切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.3x06', '腹腔镜下半肝切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.4x00', '全肝切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.61', '肝裂伤闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.6101', '肝破裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.69', '肝其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.6900x002', '肝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.6901', '肝固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9102', '肝脓肿穿刺引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9103', '肝囊肿穿刺引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.93', '肝局部灌注', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.94', '肝注射其他治疗性物质', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9400x005', '肝病损药物注射治疗', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9401', '肝内无水酒精注射术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9402', '肝囊肿硬化剂注射术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.99', '肝的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('50.9900x003', '肝止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.02', '套管胆囊造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.03', '其他胆囊造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0300x002', '胆囊造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0301', '腹腔镜下胆囊造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.04', '其他胆囊切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0400x004', '胆囊引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0400x005', '腹腔镜下胆囊取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0400x006', '浅式胆囊取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0400x008', '胆道镜下碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0401', '胆囊切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0402', '胆囊切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0403', '胆囊切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.0404', '腹腔镜下胆囊切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.1104', '腹腔镜下胆总管探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.1105', '腹腔镜下胆道造影术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.13', '开放性胆囊或胆管活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.1301', '开放性胆囊活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.1302', '开放性胆管活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.21', '部分胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.2101', '胆囊病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.22', '胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.2200x004', '胆囊扩大切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.2201', '残余胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.23', '腹腔镜下胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.2301', '腹腔镜下残余胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.24', '腹腔镜下部分胆囊切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.2401', '腹腔镜下胆囊病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.31', '胆囊肝管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.32', '胆囊肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3201', '胆囊空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3202', '胆囊十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3203', '腹腔镜下胆囊空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3204', '腹腔镜下胆囊十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.33', '胆囊胰腺吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3301', '腹腔镜下胆胰转流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.34', '胆囊胃吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.35', '其他胆囊吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.36', '胆总管肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3601', '胆总管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3602', '胆总管十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.37', '肝管胃肠道吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3700x001', '腹腔镜下肝门-空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3700x002', '腹腔镜下肝门-肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3700x003', '肝胆管-空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3700x007', '肝门-空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3701', '肝总管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3702', '肝管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3703', '肝管十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3704', '肝管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.39', '其他胆管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3900x005', '胆管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3900x008', '胆管-胰吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3901', '胆管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3902', '胆管十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3903', '胆总管胃空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3904', '胆管肝管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3905', '胆总管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3906', '胆管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.3907', '腹腔镜下胆管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.41', '胆总管探查术,用于去除结石', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4100x001', '胆总管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.42', '胆总管探查术,用于解除其他梗阻', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4201', '胆总管切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4202', '胆总管切开减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.43', '胆总管肝管的导管置入,用于减压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4301', '肝胆总管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4302', '肝管支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4303', '胆总管支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4304', '胆管支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.49', '其他胆管切开术,用于解除梗阻', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4900x002', '胆管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4900x003', '胆总管切开取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4901', '肝管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4902', '胆肠吻合口切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4903', '胆管切开取石术(伴 T 管引流)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4904', '肝总管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.4905', '胆管切开取栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.51', '胆总管探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5101', '胆总管切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5102', '胆总管切开支架取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.59', '其他胆管的切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5900x005', '胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5900x006', '腹腔镜下胆道探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5900x008', '肝内胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5901', '肝管切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5902', '肝管切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5903', '胆管切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.5904', '肝总管切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.61', '胆囊管残端切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6100x001', '残余胆囊管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.62', '法特氏壶腹切除术(伴胆总管再植入)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6200x002', '法特壶腹切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6201', '法特氏壶腹病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.63', '胆总管的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6301', '胆总管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6302', '胆总管部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6303', '胆总管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.64', '内镜下胆管或奥狄氏括约肌病损的切除术或破坏术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6401', '腹腔镜下胆管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6402', '腹腔镜下胆总管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.69', '其他胆管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6900x007', '肝胆管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6900x008', '肝胆管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6900x012', '肝总管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6901', '胆管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6902', '胆管部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6903', '肝管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6904', '肝管病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.6905', '肝总管部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.71', '胆总管单纯缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7101', '胆总管裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.72', '胆总管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7200x001', '胆总管修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7201', '胆总管瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7202', '胆总管-肠吻合口拆除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7203', '胆总管球囊扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7204', '胆总管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.79', '其他胆管的修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7900x002', '胆管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7900x005', '胆管修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7900x006', '胆总管损伤修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7900x007', '空肠代胆道术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7901', '肝管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7902', '胆管空肠吻合口闭合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7903', '带蒂肠片肝管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7904', '胆管瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7905', '胆管造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7906', '肝总管修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7907', '胆管人工造口闭合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7908', '肝管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.7909', '腹腔镜下胆管瘘口修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.791', '腹腔镜下胆管修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.81', '奥狄氏括约肌扩张', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8101', '法特氏壶腹扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.82', '胰括约肌切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8200x001', '奥狄括约肌切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8200x002', '经十二指肠壶腹括约肌切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8200x003', '胰管括约肌切开取石术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8201', '十二指肠乳头肌切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.83', '胰括约肌成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8300x003', '胆总管-十二指肠后壁吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8301', '十二指肠括约肌成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8701', '腹腔镜下胆总管T 管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8800x006', '腹腔镜下胆道取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8803', '腹腔镜下胆总管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8805', '腹腔镜-胆道镜联合探查取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8807', '经胆囊管行胆总管取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.8808', '腹腔镜下胆囊切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.89', '奥狄氏括约肌的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.91', '胆囊裂伤的修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9101', '腹腔镜下胆囊破裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.92', '胆囊造口闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.93', '其他胆瘘的闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9300x001', '胆囊-空肠瘘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9301', '胆囊瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9302', '胆囊空肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9303', '胆囊十二指肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9304', '胆囊结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9305', '胆囊胃瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.94', '胆道吻合的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9401', '胆管吻合口重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.95', '胆管假体装置去除', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9800x009', '经皮胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9800x012', '经皮肝穿刺胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9800x013', '经皮肝穿刺肝胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9804', '经皮经肝胆管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.99', '胆管的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('51.9901', '胆道内假体置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.01', '胰囊肿导管引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0101', '腹腔镜下胰腺周围脓肿外引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0102', '腹腔镜下胰腺囊肿外引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.09', '其他胰腺切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0900x001', '腹腔镜下胰腺脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0901', '胰腺切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0902', '胰腺切开取石术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0903', '胰腺切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.0904', '腹腔镜下胰腺切开引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.12', '开放性胰腺活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.1302', '腹腔镜下胰腺探查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.21', '内镜下胰管病损或组织的切除术或破坏术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.2101', '腹腔镜下胰腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.22', '胰腺或胰管病损或组织的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.2201', '胰腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.3x00', '胰囊肿袋形缝合术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x00', '胰囊肿内引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x00x004', '胰腺囊肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x01', '胰腺囊肿十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x02', '胰腺囊肿胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x03', '胰腺囊肿空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x04', '腹腔镜下胰腺囊肿胃肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x05', '腹腔镜下胰腺囊肿十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x06', '腹腔镜下胰腺囊肿空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.4x07', '腹腔镜下胰腺囊肿内引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.51', '近端胰腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5100x001', '胰近端切除伴十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5101', '胰头切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5102', '胰头伴部分胰体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5103', '胰头十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5104', '胰头部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.52', '远端胰腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5201', '胰尾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5202', '胰尾伴部分胰体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5203', '胰尾部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5204', '腹腔镜下胰尾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5205', '腹腔镜下胰尾伴部分胰体切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5206', '腹腔镜下胰体胰尾病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.53', '根治性胰腺次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5301', '腹腔镜根治性胰体尾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.59', '其他部分胰腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5901', '胰腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5902', '胰腺十二指肠部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5903', '胰腺节段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5904', '胰体尾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5905', '腹腔镜胰腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.5906', '腹腔镜胰腺中段切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.6x00', '全胰切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.6x00x003', '异位胰腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.6x01', '胰腺全部切除伴十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.6x02', '腹腔镜下全胰切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.6x03', '腹腔镜下胰十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.7x00', '根治性胰十二指肠切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.7x00x003', '胰腺根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.7x01', '腹腔镜下胰十二指肠根治术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.8', '胰腺移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.81', '胰腺组织再植入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.82', '胰腺同种移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.83', '胰腺异种移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.84', '朗格汉斯胰岛细胞自体移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.85', '朗格汉斯胰岛细胞异体移植', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.86', '朗格汉斯胰岛细胞移植', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.92', '胰管套管置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9201', '胰管支架置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9301', '腹腔镜下经十二指肠切开胰管开口整形支架引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.95', '胰腺的其他修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9500x001', '胰瘘管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9500x002', '胰尾修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9501', '胰腺裂伤缝合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9502', '胰管修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9503', '胰腺瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9504', '胰腺修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.96', '胰腺吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9601', '胰腺管空肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9602', '胰腺管胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9603', '胰腺管回肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9604', '胰腺管十二指肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9605', '腹腔镜下胰胃吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.99', '胰腺其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('52.9901', '胰管扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53', '腹股沟疝单侧修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0001', '单侧腹股沟疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0002', '腹腔镜下单侧腹股沟疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.01', '其他和开放性腹股沟直疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0100x001', '单侧腹股沟直疝疝囊高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0101', '单侧腹股沟直疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0102', '单侧腹股沟直疝斜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.02', '其他和开放性腹股沟斜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0201', '单侧腹股沟斜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0202', '单侧腹股沟斜疝疝囊高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0203', '腹腔镜下单侧腹股沟斜疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0204', '腹腔镜下单侧腹股沟斜疝疝囊高位结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.03', '用移植物或假体的其他和开放性腹股沟直疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0301', '单侧腹股沟直疝斜疝无张力修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0302', '单侧腹股沟直疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.04', '用移植物或假体的其他和开放性腹股沟斜疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0401', '单侧腹股沟斜疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.05', '用移植物或假体的腹股沟疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.0501', '单侧腹股沟疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1', '双侧腹股沟疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.11', '其他和开放性双侧腹股沟直疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1101', '双侧腹股沟直疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.12', '其他和开放性双侧腹股沟斜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1201', '双侧腹股沟斜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1202', '双侧腹股沟斜疝疝囊高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1203', '腹腔镜下双侧腹股沟斜疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.13', '其他和开放性双侧腹股沟疝修补术,一侧直疝和一侧斜疝', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1301', '腹股沟疝修补术,一侧直疝一侧斜疝', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.14', '用移植物或假体的其他和开放性双侧腹股沟直疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1401', '双侧腹股沟直疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.15', '用移植物或假体的其他和开放性双侧腹股沟斜疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1501', '双侧腹股沟斜疝无张力修补', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.16', '用移植物或假体的其他和开放性双侧腹股沟疝修补术,一侧直疝和一侧斜疝', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1601', '腹股沟疝无张力修补术,一侧直疝,一侧斜疝', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.17', '用移植物或假体的双侧腹股沟疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.1701', '双侧腹股沟疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.21', '用移植物或假体的单侧股疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.2100x001', '腹腔镜下单侧股疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.2101', '单侧股疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.29', '其他单侧股疝缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.2901', '单侧股疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.31', '用移植物或假体的双侧股疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.3101', '双侧股疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.39', '其他双侧股疝缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.3901', '双侧股疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.41', '其他和开放性脐疝修补术伴假体', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.4101', '脐疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.42', '腹腔镜下脐疝移植物或假体修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.4201', '腹腔镜下脐疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.43', '其他腹腔镜脐疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.4301', '腹腔镜下脐疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.49', '其他开放性脐疝缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.4901', '脐疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.4902', '脐重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.51', '切口疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.5101', '腹腔镜下切口疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.59', '其他前腹壁疝的修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.5900x001', '腹壁白线疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.5901', '腹壁疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.5902', '腹腔镜下腹壁疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.61', '其他开放性切口疝伴假体修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.6101', '腹壁切口疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.62', '腹腔镜下移植物或假体的脐切口疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.63', '其他前腹壁疝伴有移植物或假体的其他腹腔镜下修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.6301', '腹腔镜下切口疝无张力修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.6302', '腹腔镜下腹壁疝无张力修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.69', '其他和开放性前腹壁疝伴假体修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.6900x002', '腹白线疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.6901', '腹壁疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.71', '腹腔镜腹入路横隔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.7101', '腹腔镜经腹食管裂孔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.72', '其他和开放性腹入路横隔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.7201', '经腹膈疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.7202', '经腹食管裂孔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.75', '腹入路横隔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8', '横膈疝修补术,经胸入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8000x001', '经胸膈疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8001', '经胸食管裂孔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8002', '经胸腹横膈疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.81', '横膈折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8100x001', '膈肌折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8100x002', '经胸膈肌折叠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8100x003', '经腹膈肌折叠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8100x004', '胸腔镜膈肌折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.82', '胸骨旁疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.83', '腹腔镜横膈疝修补术,胸入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8300x001', '胸腔镜下膈疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.8301', '胸腔镜下食管裂孔疝修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.84', '其他和开放性横隔疝修补术,胸入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x00', '其他疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x00x015', '造口旁疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x00x016', '会阴疝无张力修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x01', '坐骨孔疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x02', '腰疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x03', '闭孔疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x04', '坐骨直肠窝疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x05', '腹膜后疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('53.9x06', '网膜疝修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00', '腹壁切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x001', '骶部脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x002', '腹壁窦道切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x004', '腹壁脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x006', '腹膜外脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x010', '腹壁血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x013', '腹股沟脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x018', '腹膜后脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x021', '腹膜外血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x022', '脐脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x023', '髂窝积液清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x024', '髂窝脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x00x025', '髂窝血肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x01', '腹股沟探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x02', '腹壁切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x03', '腹壁异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x04', '腹股沟切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x05', '脐切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x06', '髂窝切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x07', '腹膜外切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.0x08', '腹膜后切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.11', '开腹探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1101', '腹腔镜中转剖腹探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.12', '近期开腹手术部位的再切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1201', '再开腹探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1202', '近期开腹术后腹腔止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.19', '其他开腹手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x001', '腹部血肿去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x005', '腹腔镜下腹腔积血清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x006', '腹腔镜下男性盆腔脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x010', '腹腔脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x011', '腹腔血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x020', '男性盆腔脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x023', '男性盆腔血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1900x024', '膈下脓肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1901', '腹膜后血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1902', '腹膜血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1903', '腹腔切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1904', '膈下脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1905', '男性盆腔切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1906', '网膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1907', '腹腔出血止血术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1908', '膈下血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.1909', '肠系膜血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.21', '腹腔镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2100x005', '经阴道腹腔镜检查', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.22', '腹壁或脐的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2200x003', '腹腔镜下腹壁活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2200x004', '腹壁穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2201', '腹壁活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2202', '脐活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.23', '腹膜活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2300x003', '腹膜后活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2301', '开放性腹膜活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2302', '开放性网膜活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2303', '开放性肠系膜活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.24', '闭合性[经皮][针吸]腹内肿块活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2400x001', '腹内病损穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2400x002', '腹腔病损穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2400x003', '髂部病损穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2400x006', '盆腔病损穿刺活检', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2401', '经皮腹腔肿物活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2402', '腹腔镜下肠系膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2405', '腹腔镜下网膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.2406', '腹腔镜下腹膜活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x00', '腹壁或脐病损或组织的切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x00x004', '腹壁窦道扩创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x00x010', '腹壁伤口扩创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x00x011', '腹壁伤口清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x00x027', '脐病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x01', '腹壁病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x02', '腹腔镜下腹壁病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x03', '腹股沟病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x04', '脐切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x05', '盆腔壁病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x06', '腹壁清创术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x07', '腹壁脐尿管囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.3x08', '腹壁瘢痕切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00', '腹膜组织的切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x005', '大网膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x006', '大网膜部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x007', '大网膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x012', '骶尾部病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x021', '腹膜外病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x035', '盆腔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x039', '盆腔病损冷冻治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x042', '髂窝病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x047', '腰骶病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x048', '腹腔病损氩氦刀靶向冷冻治疗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x00x050', '腹腔镜下直肠全系膜切除术[TME]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x01', '腹膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x02', '腹膜后病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x03', '网膜部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x04', '网膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x05', '网膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x06', '肠系膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x07', '骶前病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x08', '盆腔腹膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x09', '经阴道腹膜后病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x10', '腹腔镜下盆腔腹膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x11', '腹腔镜下腹膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x12', '腹腔镜下网膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x13', '腹腔镜下肠系膜病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x14', '腹腔镜下网膜部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x15', '腹腔镜下腹膜后病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.4x16', '腹腔镜下网膜切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.51', '腹腔镜下腹膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5100x005', '腹腔镜下腹腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5100x009', '腹腔镜下盆腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5101', '腹腔镜下肠粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5102', '腹腔镜下网膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5103', '腹腔镜下盆腔腹膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.59', '腹膜粘连的其他松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5900x007', '盆腔腹膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5901', '腹腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5902', '腹膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5903', '肠粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5904', '盆腔粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5905', '网膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.5906', '阑尾周围粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.61', '腹壁手术后裂开再闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.6101', '腹壁切口裂开缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.62', '肉芽性腹部伤口的延迟性闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.63', '其他腹壁缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.6301', '腹壁裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.64', '腹膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.6401', '网膜裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.71', '腹裂(畸形)修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.72', '腹壁其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7200x001', '腹壁补片修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.73', '腹膜其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7300x001', '腹膜组织修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7301', '腹膜后组织修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7302', '胃结肠韧带缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.74', '网膜其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x001', '大网膜包肝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x002', '大网膜包肾术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x003', '大网膜还纳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x004', '大网膜内移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x005', '大网膜修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7400x006', '生物大网膜移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7401', '网膜固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7402', '网膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7403', '网膜移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7404', '网膜扭转复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7405', '异体大网膜移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.75', '肠系膜其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7500x002', '肠系膜修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7501', '肠系膜固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.7502', '肠系膜折叠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9101', '腹腔穿刺引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9105', '腹腔穿刺术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9106', '盆腔穿刺术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.92', '腹腔异物去除', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9201', '腹腔切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9202', '腹腔镜下腹腔异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.93', '皮肤腹膜造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9300x001', '腹壁造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.94', '腹腔血管分流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9400x002', '腹腔-静脉转流泵管置入术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9401', '腹腔颈静脉分流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9402', '腹腔静脉分流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.95', '腹膜切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9500x004', '脑室-腹腔引流管腹腔端修正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9501', '拉德手术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9502', '脑室-腹腔分流修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.99', '腹部的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9900x010', '腹腔镜下盆腔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9900x011', '腹腔镜下盆腔内膜病损电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9900x017', '盆腔补片术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9901', '盆腔病损切除术(男性)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9902', '腹腔病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9903', '腹腔镜下盆腔病损切除术(男性)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('54.9904', '腹腔镜下腹腔病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0100x010', '肾被膜下血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0101', '肾探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0102', '肾切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0103', '肾切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0105', '肾囊肿去顶术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0106', '腹腔镜下肾囊肿去顶术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0107', '肾血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0109', '腹腔镜下肾探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.011', '腹腔镜下肾切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0111', '腹腔镜下肾切开取石术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0300x002', '经皮肾镜取石术(II 期)(再次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0300x003', '经皮肾镜取石术(I 期)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0300x005', '经皮肾造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0300x006', '经皮肾镜异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0300x007', '经皮肾镜取石术(II 期)(同次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0302', '经皮肾镜取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0400x005', '经皮肾镜超声碎石取石术(II 期)(再次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0400x006', '经皮肾镜激光碎石取石术(II 期)(再次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0400x008', '经皮肾镜超声碎石取石术(II 期)(同次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0400x009', '经皮肾镜激光碎石取石术(II 期)(同次住院)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0403', '经皮肾镜超声碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.0404', '经皮肾镜激光碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1100x001', '肾盂切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1100x002', '输尿管镜下肾盂旁囊肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1101', '肾盂切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1105', '肾盏切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1108', '腹腔镜下肾盂旁囊肿去顶术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.1109', '腹腔镜下肾盂切开取石术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.2301', '肾穿刺活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.24', '开放性肾活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3401', '腹腔镜下肾病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3900x001', '副肾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3900x003', '肾病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3900x004', '腹腔镜下肾病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3902', '经尿道输尿管镜肾病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.3903', '经皮肾镜肾盂病损电切术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.4x00', '部分肾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.4x03', '腹腔镜下肾部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.51', '肾输尿管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5101', '单侧肾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5103', '腹腔镜下单侧肾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5104', '腹腔镜下单侧肾输尿管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5106', '腹腔镜膀胱镜下肾输尿管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5201', '孤立肾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.5401', '腹腔镜下双侧肾切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.7x00', '肾固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.7x01', '腹腔镜下肾固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8101', '肾裂伤修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.85', '马蹄形肾联合部切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8501', '腹腔镜马蹄肾峡部分离术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8600x006', '腹腔镜下肾盏-输尿管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8602', '肾盂输尿管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8603', '肾盏输尿管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8606', '腹腔镜下肾盂输尿管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8701', '肾盂成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8702', '肾盂输尿管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8703', '腹腔镜下肾盂输尿管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8704', '腹腔镜下肾盂成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8900x003', '腹腔镜下融合肾离断术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8900x004', '融合肾离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.8901', '肾修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9100x003', '肾囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9100x005', '肾盂旁囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9206', '经皮肾囊肿抽吸术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9601', '肾囊肿硬化剂注射术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9901', '肾折叠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9902', '肾蒂淋巴管离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('55.9903', '腹腔镜下肾折叠术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x001', '经尿道输尿管镜输尿管异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x002', '经尿道输尿管镜肾盂异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x003', '经尿道输尿管镜输尿管取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x004', '经尿道输尿管镜肾盂取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x005', '经尿道输尿管镜输尿管激光碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x006', '经尿道输尿管镜肾盂激光碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x009', '经尿道输尿管镜输尿管超声碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x010', '经尿道输尿管镜肾盂超声碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x011', '经尿道输尿管镜输尿管激光碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x012', '经尿道输尿管镜肾盂激光碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x015', '经尿道输尿管镜输尿管超声碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x00x016', '经尿道输尿管镜肾盂超声碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x01', '经尿道输尿管/肾盂异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x02', '经尿道输尿管/肾盂取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x03', '经尿道输尿管/肾盂激光碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x06', '经尿道输尿管/肾盂激光碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.0x08', '经尿道输尿管/肾盂超声碎石取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.1x01', '膀胱镜下输尿管口切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x00x002', '经皮肾镜输尿管内切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x00x007', '输尿管切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x01', '输尿管切开取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x02', '输尿管切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x04', '腹腔镜下输尿管切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.2x05', '输尿管镜下输尿管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.3300x003', '经皮肾镜输尿管活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.34', '开放性输尿管活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4', '输尿管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.41', '部分输尿管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4100x008', '膀胱镜下输尿管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4100x011', '腹腔镜下输尿管残端切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4100x012', '经尿道输尿管病损激光切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4101', '输尿管病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4102', '副输尿管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4103', '输尿管口囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4105', '腹腔镜下输尿管部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4106', '内镜下输尿管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4107', '内镜下输尿管部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.42', '输尿管全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.4201', '腹腔镜下输尿管切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.6100x001', '输尿管-皮肤造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.6100x004', '腹腔镜下输尿管-皮肤造口术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.7100x002', '输尿管-乙状结肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.7100x004', '腹腔镜下输尿管-乙状结肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.7101', '输尿管-回肠吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.74', '输尿管膀胱吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.7402', '腹腔镜下输尿管膀胱吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.7501', '左右输尿管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.82', '输尿管裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8200x002', '腹腔镜下输尿管损伤修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8401', '输尿管阴道瘘修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8900x001', '肠管代输尿管术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8900x006', '腹腔镜下肠管代输尿管术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8901', '输尿管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8905', '空肠代输尿管术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8906', '回肠代输尿管术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8908', '腹腔镜下输尿管成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.8909', '腹腔镜下膀胱瓣代输尿管术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.91', '输尿管口扩张', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('56.9500x001', '腹腔镜下输尿管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x002', '经尿道膀胱镜膀胱碎石钳碎石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x003', '经尿道膀胱镜膀胱异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x006', '经尿道膀胱镜膀胱血块清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x008', '经尿道膀胱镜膀胱超声碎石取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x012', '经尿道膀胱镜膀胱激光碎石取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x00x013', '经尿道膀胱镜膀胱碎石钳碎石取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x02', '经尿道膀胱异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x04', '经尿道膀胱血块清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x05', '经尿道膀胱超声碎石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x06', '经尿道膀胱激光碎石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.0x08', '经尿道膀胱碎石钳碎石取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.17', '经皮膀胱造口术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.1700x002', '经皮膀胱造口钬激光碎石取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.1901', '膀胱探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.1902', '膀胱切开取石术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.1903', '膀胱切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.1905', '膀胱切开血块清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.21', '膀胱造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.4900x001', '经尿道膀胱病损电切术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.4901', '经尿道膀胱病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.4902', '经尿道膀胱颈电切术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.4904', '经尿道膀胱部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.51', '脐尿管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5100x001', '脐尿管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5100x003', '腹腔镜下脐尿管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5102', '腹腔镜下脐尿管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5900x001', '膀胱病损激光切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5901', '膀胱病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5902', '膀胱憩室切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.5906', '膀胱病损电灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.6x00', '部分膀胱切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.6x05', '膀胱袖状切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.6x06', '腹腔镜下膀胱部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.71', '根治性膀胱切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.7102', '男性盆腔脏器去除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.7103', '腹腔镜下膀胱根治切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.7900x001', '膀胱全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.7901', '腹腔镜下全膀胱切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.81', '膀胱裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.83', '膀胱肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8301', '膀胱回肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8302', '膀胱乙状结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8303', '膀胱结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8304', '膀胱直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8305', '膀胱阴道直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8400x004', '腹腔镜下膀胱-阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8400x005', '经阴道膀胱-阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8401', '膀胱瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8402', '膀胱阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8403', '膀胱会阴瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8404', '膀胱子宫瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8405', '膀胱尿道阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.85', '膀胱颈的膀胱尿道成形术和整形修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8500x002', '膀胱颈重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8501', '膀胱颈成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8502', '膀胱颈 V-Y 型成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.87', '膀胱重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8700x005', '腹腔镜下回肠代膀胱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8700x006', '腹腔镜下可控性肠代膀胱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8701', '回肠代膀胱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8702', '可控回肠膀胱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8706', '乙状结肠代膀胱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8900x001', '膀胱修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8900x003', '腹腔镜下膀胱颈悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8900x004', '膀胱颈悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8904', '膀胱疝修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.8905', '腹腔镜下膀胱修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.9101', '经尿道膀胱颈切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('57.9301', '经尿道膀胱电凝止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x00', '尿道切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x00x003', '尿道切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x00x004', '膀胱镜下尿道狭窄切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x01', '尿道切开取石术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x03', '尿道切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.0x05', '尿道隔膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.1x01', '尿道外口切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3100x001', '膀胱镜下后尿道瓣膜电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3101', '经尿道尿道病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3103', '经尿道尿道狭窄电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3901', '尿道病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3902', '尿道瓣膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3903', '尿道切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3905', '尿道狭窄切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.3906', '尿道口病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.41', '尿道裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4301', '尿道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4302', '尿道阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4303', '尿道直肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4304', '尿道会阴瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4305', '腹腔镜下尿道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4401', '尿道吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.45', '尿道下裂或尿道上裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4500x001', '尿道下裂 Ⅰ期成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4500x002', '尿道下裂Ⅱ期成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4501', '尿道上裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4502', '尿道下裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4503', '阴茎皮条法尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4600x001', '膀胱粘膜瓣代尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4600x002', '颊粘膜代尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4600x006', '包皮皮肤代尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4600x007', '舌黏膜代尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4601', '尿道建造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.47', '尿道口成形术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4900x003', '尿道修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.4900x005', '会阴阴囊皮瓣尿道成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.5x02', '内镜下尿道内口切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.6x00', '尿道扩张', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.6x00x003', '经内镜尿道结石取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.6x00x004', '经内镜尿道异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.6x01', '尿道会师术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.6x02', '尿道支架置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.9102', '尿道旁切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.9200x002', '尿道旁腺病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('58.9201', '尿道旁病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59', '腹膜后清扫术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0200x007', '肾周围淋巴管剥脱术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0201', '输尿管狭窄松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0202', '输尿管周围粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0203', '肾周围粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0300x002', '腹腔镜下肾周围淋巴管剥脱术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0301', '腹腔镜下输尿管狭窄松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0302', '腹腔镜下肾周粘连松解术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0303', '腹腔镜下输尿管周围粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0901', '肾周切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.0902', '肾周血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.12', '腹腔镜下膀胱周围粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.1902', '耻骨后探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.4x00', '耻骨上尿道膀胱悬吊术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.5x00', '耻骨后尿道悬吊术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.5x01', '经阴道无张力尿道悬吊术(TVT)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.7900x002', '经阴道无张力尿道悬吊术 (TVT)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.7903', '经阴道闭孔无张力尿道中段悬吊术(TVT-O)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.7904', '单切口经阴道闭孔无张力尿道中段悬吊术(TVT-S)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x00x001', '膀胱镜下输尿管扩张术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x00x004', '经尿道膀胱镜输尿管导管插入术(治疗性操作)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x00x005', '经尿道膀胱镜输尿管镜输尿管扩张术(治疗性操作)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x00x006', '经尿道膀胱镜输尿管扩张术(治疗性操作)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x00x007', '直视下输尿管支架置入(治疗性操作)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.8x04', '经皮肾镜输尿管支架置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('59.9101', '肾周病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.02', '甲状腺区伤口的再切开', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.0201', '甲状腺术后止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.09', '甲状腺区的其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.0901', '甲状腺切开探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.0902', '甲状腺切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.0903', '甲状旁腺探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.12', '开放性甲状腺活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.1301', '开放性甲状旁腺活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.31', '甲状腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3101', '腔镜下甲状腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.39', '其他部分甲状腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3901', '甲状腺大部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3902', '腔镜下甲状腺大部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3903', '异位甲状腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3904', '甲状腺楔形切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3905', '甲状腺峡部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3906', '甲状腺峡部部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3907', '腔镜下甲状腺峡部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.3908', '腔镜下甲状腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.5', '胸骨下甲状腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.51', '胸骨下甲状腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.5101', '胸骨后甲状腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.52', '胸骨下甲状腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.81', '甲状旁腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.89', '其他甲状旁腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.8901', '异位甲状旁腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.8902', '甲状旁腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.8903', '甲状旁腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.8904', '腔镜下甲状旁腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.8905', '移植甲状旁腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.91', '切断甲状腺峡部', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.92', '甲状腺血管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.93', '甲状腺缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.94', '甲状腺组织再植入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.9401', '甲状腺自体移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.95', '甲状旁腺组织再植入', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.9501', '甲状旁腺自体移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.9502', '甲状旁腺异体移植术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.98', '甲状腺其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('6.99', '甲状旁腺其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.0x00x001', '经尿道前列腺切开术[TUI-P]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.0x00x003', '前列腺脓肿引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.12', '开放性前列腺活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.14', '开放性精囊活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.2100x001', '经尿道前列腺激光切除术[TULIP 手术]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.2100x002', '经尿道钬激光前列腺切除术[HOLEP]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.2900x003', '经尿道前列腺绿激光汽化术(PVP)', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.2900x004', '经尿道前列腺等离子电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.2901', '经尿道前列腺气化电切术[TEVAP 手术]', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.4x00', '耻骨后前列腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.5x00', '根治性前列腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.5x01', '前列腺精囊切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.5x02', '腹腔镜下前列腺根治性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.6100x001', '前列腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.6100x002', '前列腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.6101', '腹腔镜下前列腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.62', '经会阴前列腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.6900x002', '腹腔镜下前列腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.72', '精囊切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.7200x002', '经尿道精囊镜精囊碎石取石术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.7900x002', '经尿道精囊镜精阜电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.7901', '精囊囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.94', '控制前列腺(手术后)出血', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('60.9400x001', '前列腺术后止血术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.0x00x003', '阴囊切开探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.0x02', '阴囊切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.0x03', '阴囊血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.0x04', '阴囊异物取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.2x00', '睾丸鞘膜积液切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.2x02', '睾丸鞘膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.3x00x005', '阴囊皮肤和皮下坏死组织切除清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.3x00x007', '阴囊切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.3x03', '阴囊病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4101', '睾丸鞘膜裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4102', '阴囊裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.42', '阴囊瘘管修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4901', '睾丸鞘状突高位结扎术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4902', '阴囊修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4904', '睾丸鞘膜翻转术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('61.4905', '腹腔镜下鞘状突高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.0x00x001', '睾丸切开探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.0x01', '腹腔镜下隐睾探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.12', '开放性睾丸活组织检查', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.2x00x003', '腹腔镜下单侧睾丸切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.2x01', '睾丸病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.3x00', '单侧睾丸切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.3x01', '单侧睾丸附睾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.3x03', '单侧隐睾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.3x04', '腹腔镜下单侧隐睾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4100x004', '双侧睾丸切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4101', '双侧睾丸附睾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4102', '双侧睾丸根治性切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4103', '腹腔镜下双侧睾丸切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4104', '双侧隐睾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.4105', '腹腔镜下双侧隐睾切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.5x00', '睾丸固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.5x01', '腹腔镜睾丸固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('62.6900x001', '睾丸修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.1x00x003', '精索鞘膜高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.1x01', '精索静脉高位结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.1x02', '精索鞘膜积液切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.1x03', '腹腔镜精索静脉高位结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.2x00', '附睾囊肿切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.2x01', '精液囊肿切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.3x01', '精索病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.3x03', '附睾病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.4x00', '附睾切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.5201', '睾丸扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.5202', '精索扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.5203', '睾丸附件扭转复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.71', '输精管结扎术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('63.8200x001', '输精管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.0x00', '包皮环切术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.2x00x001', '包皮瘢痕切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.2x00x002', '包皮病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.2x00x003', '阴茎瘢痕切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.2x00x006', '阴茎皮肤和皮下坏死组织切除清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.2x00x008', '龟头病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.3x01', '阴茎部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.3x02', '阴茎全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.41', '阴茎裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.4901', '阴茎矫直术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.4902', '阴茎延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.4904', '阴茎海绵体白膜修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.91', '阴茎背侧或外侧包皮切开', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.9100x002', '阴茎瘢痕松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('64.9100x003', '包皮粘连分离术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0101', '腹腔镜输卵管卵巢探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0103', '腹腔镜卵巢脓肿切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0104', '腹腔镜卵巢妊娠切开清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.09', '其他卵巢切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0900x004', '卵巢切开血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0903', '卵巢脓肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.0904', '卵巢妊娠切开清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.1200x001', '直视下卵巢活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.13', '腹腔镜卵巢活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.14', '腹腔镜卵巢的其他诊断性操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.21', '卵巢囊肿袋形缝合术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.22', '卵巢楔形切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.23', '腹腔镜卵巢囊肿袋形缝合术[造袋术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.24', '腹腔镜卵巢楔形部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.25', '其他腹腔镜卵巢局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2500x003', '腹腔镜下卵巢病损烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2500x005', '腹腔镜下卵巢囊肿穿刺术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2501', '腹腔镜卵巢病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2503', '腹腔镜卵巢黄体切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2505', '腹腔镜卵巢部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.29', '卵巢的其他局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2900x001', '卵巢病损烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2900x007', '卵巢黄体血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2900x011', '卵巢囊肿穿刺术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2901', '卵巢病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2903', '经阴道卵巢病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2905', '卵巢卵巢黄体切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.2906', '卵巢部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.31', '腹腔镜单侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.39', '单侧卵巢的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.3900x001', '单侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.3900x002', '经阴道单侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.41', '腹腔镜单侧输卵管-卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.49', '单侧输卵管-卵巢的其他切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.4900x001', '单侧输卵管-卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.4901', '经阴道单侧输卵管卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.51', '双侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.5100x001', '女性去势术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.5100x003', '经阴道双侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.52', '残留卵巢其他切除', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.5200x001', '残留卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.53', '腹腔镜双侧卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.54', '腹腔镜残留卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.61', '双侧输卵管卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.6101', '经阴道双侧输卵管卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.62', '其他残留卵巢和输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.6200x001', '残留输卵管-卵巢切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.63', '腹腔镜双侧卵巢和输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.64', '腹腔镜残留卵巢和输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.71', '其他单纯卵巢缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7100x001', '卵巢单纯缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.73', '其他输卵管卵巢成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.76', '腹腔镜输卵管卵巢成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.79', '卵巢其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7900x008', '腹腔镜下卵巢破裂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7900x009', '腹腔镜下卵巢破裂止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7900x010', '卵巢重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7901', '卵巢成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7902', '卵巢固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7903', '卵巢悬吊术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7904', '腹腔镜卵巢悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.7905', '腹腔镜卵巢成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.81', '腹腔镜卵巢和输卵管粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.8101', '腹腔镜卵巢粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.8102', '腹腔镜输卵管粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.89', '卵巢和输卵管粘连的其他松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.8900x001', '输卵管-卵巢粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.8901', '卵巢粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.8902', '输卵管粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.91', '卵巢抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9101', '腹腔镜卵巢穿刺抽吸术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.95', '卵巢扭转松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.99', '卵巢其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9900x005', '卵巢卵泡穿刺术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9900x006', '腹腔镜下卵巢穿刺取卵术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9900x007', '性腺切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9901', '卵巢打孔术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('65.9902', '腹腔镜卵巢打孔术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0100x003', '腹腔镜下输卵管切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0100x005', '输卵管切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0100x006', '输卵管切开妊娠物去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0101', '腹腔镜输卵管探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0102', '腹腔镜输卵管切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0103', '腹腔镜输卵管妊娠切开去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.02', '输卵管造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0201', '输卵管造口去除输卵管妊娠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0202', '腹腔镜输卵管造口术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.0203', '腹腔镜输卵管造口去除输卵管妊娠术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.21', '内镜下双侧输卵管结扎术和挤压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2101', '腹腔镜双侧输卵管挤压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2102', '腹腔镜双侧输卵管结扎和挤压术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.22', '双侧输卵管内镜下结扎术和切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2200x001', '腹腔镜下双侧输卵管切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2201', '腹腔镜双侧输卵管结扎和切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.29', '双侧输卵管内镜下其他破坏术或闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2900x001', '腹腔镜下双侧输卵管电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2900x003', '宫腔镜下输卵管栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2901', '腹腔镜输卵管绝育术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.2903', '腹腔镜双侧输卵管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.3900x001', '输卵管绝育术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.3900x004', '双侧输卵管结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.3901', '双侧输卵管粘堵术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.4x00', '单侧输卵管全部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.4x01', '经阴道单侧输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.4x02', '腹腔镜单侧输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.51', '双侧输卵管切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.5101', '经阴道双侧输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.5102', '腹腔镜双侧输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.52', '残留输卵管切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.5201', '腹腔镜残留输卵管切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.61', '输卵管病损切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x001', '经阴道输卵管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x002', '腹腔镜下泡状附件电灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x003', '腹腔镜下泡状附件切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x006', '腹腔镜下输卵管伞端电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x007', '腹腔镜下输卵管系膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x008', '泡状附件切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x011', '输卵管病损烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x012', '输卵管系膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6100x014', '输卵管血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6102', '输卵管病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6104', '腹腔镜输卵管病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.62', '输卵管切除术伴去除输卵管妊娠', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6200x003', '输卵管部分切除伴输卵管妊娠物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6200x004', '腹腔镜下输卵管部分切除伴输卵管妊娠物去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6201', '腹腔镜输卵管切除伴输卵管妊娠去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6301', '腹腔镜双侧输卵管部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.69', '其他部分输卵管切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6901', '单侧输卵管部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.6902', '腹腔镜单侧输卵管部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.71', '单纯输卵管缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7100x002', '腹腔镜下输卵管单纯缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7301', '腹腔镜输卵管输卵管吻合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.79', '输卵管其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7900x004', '输卵管结扎再通术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7900x008', '腹腔镜下输卵管导丝复通术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7900x009', '腹腔镜下输卵管复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7905', '腹腔镜输卵管成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.7906', '腹腔镜输卵管伞端成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.8x02', '腹腔镜输卵管通液术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.8x03', '宫腔镜输卵管通液术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.9100x003', '腹腔镜下输卵管穿刺引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.9202', '单侧输卵管结扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.9203', '腹腔镜单侧输卵管结扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.9500x001', '腹腔镜下输卵管甲氨蝶呤注射术[MTX 注射术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.9502', '腹腔镜输卵管注药术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('66.99', '输卵管的其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.0x00x002', '子宫颈粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.2x00', '子宫颈锥形切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.2x01', '宫腔镜子宫颈锥形切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.31', '子宫颈囊肿袋形缝合术[造袋术]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.32', '子宫颈病损烧灼破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3200x009', '子宫颈电凝止血术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3200x012', '子宫颈转化区大环形切除术[LLETZ]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3201', '子宫颈环形电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3202', '子宫颈锥形电切术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3203', '宫腔镜子宫颈病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.39', '子宫颈病损或组织的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3900x001', '经阴道子宫颈病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3902', '宫腔镜子宫颈病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3903', '腹腔镜子宫颈病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3904', '子宫颈病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.3905', '子宫颈肌瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x00', '子宫颈截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x00x002', '子宫颈广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x00x005', '子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x00x006', '子宫颈部分切除术(阴式)[曼氏手术]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x01', '子宫颈部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x02', '残余子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x03', '经阴道子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x04', '子宫颈切除伴阴道缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x05', '腹腔镜子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x06', '腹腔镜残余子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.4x07', '腹腔镜阴式子宫颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.51', '经腹子宫颈环扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.5101', '腹腔镜子宫颈环扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.5900x002', '子宫峡部环扎术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.5900x003', '子宫颈环扎术[McDonald 手术]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.5901', '经阴道子宫颈环扎术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.61', '子宫颈裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.62', '子宫颈瘘管修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.6201', '子宫颈阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.6202', '子宫颈乙状结肠瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.69', '子宫颈的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.6901', '子宫颈成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('67.6902', '子宫颈陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.0x00x006', '腹腔镜下子宫切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.21', '子宫内膜粘连切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2100x002', '子宫内膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2101', '宫腔镜子宫内膜粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2206', '宫腔镜子宫隔膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.23', '子宫内膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2300x005', '宫腔镜下子宫内膜热球去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2302', '宫腔镜子宫内膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.25', '子宫动脉栓塞[UAE]不伴弹簧圈', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2500x001', '子宫动脉栓塞术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.29', '子宫病损的其他切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2900x028', '子宫病损烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2900x037', '子宫角楔形切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2900x048', '宫腔镜下子宫电凝止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2901', '子宫肌瘤切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2902', '子宫内膜病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2903', '子宫内膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2904', '子宫病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2906', '子宫病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2907', '经阴道子宫病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2908', '腹腔镜子宫内膜病损烧灼术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2909', '腹腔镜子宫病损电凝术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2912', '腹腔镜子宫病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2913', '宫腔镜子宫病损电切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2915', '宫腔镜子宫内膜病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2916', '宫腔镜子宫内膜成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.2918', '腹腔镜辅助经阴道子宫病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3102', '腹腔镜子宫次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3104', '腹腔镜残角子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3105', '腹腔镜双子宫单侧切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3901', '子宫次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3905', '残角子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.3906', '双子宫单侧切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.41', '腹腔镜经腹全子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4101', '腹腔镜经腹子宫扩大切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4102', '腹腔镜经腹筋膜外子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4103', '腹腔镜经腹始基子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4104', '腹腔镜经腹双子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.49', '其他和未特指的腹式全子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4900x004', '始基子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4900x006', '子宫次广泛切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4901', '经腹全子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4902', '经腹筋膜外全子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4903', '经腹扩大性全子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4904', '经腹子宫广泛切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.4905', '经腹双子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.51', '腹腔镜辅助阴道子宫切除术(LAVH)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.5100x004', '腹腔镜辅助经阴道始基子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.5100x005', '腹腔镜辅助经阴道子宫次全切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.5101', '腹腔镜辅助经阴道子宫扩大切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.5901', '经阴道子宫切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.61', '腹腔镜根治性腹的子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.6100x001', '腹腔镜下子宫广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.6100x002', '腹腔镜下子宫改良广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.6101', '腹腔镜改良根治性子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.69', '其他和未特指的腹式根治性子宫切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.6900x001', '子宫广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('68.6900x002', '子宫改良广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1900x022', '腹腔镜下阔韧带病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1901', '子宫骶韧带烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1902', '子宫骶韧带切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1903', '阔韧带病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1904', '子宫韧带病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1905', '圆韧带病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1907', '腹腔镜子宫韧带病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.1908', '腹腔镜骶韧带部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2200x007', '腹腔镜下子宫-骶韧带高位悬吊术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2200x009', '腹腔镜下子宫-骶前固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2200x014', '子宫-骶前固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2200x025', '骶韧带缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2200x030', '主韧带缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2201', '曼彻斯特手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2204', '主韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2205', '圆韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2206', '子宫骶韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2207', '圆韧带缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2208', '腹腔镜圆韧带缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.2209', '腹腔镜宫骶韧带缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.221', '腹腔镜高位宫骶韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.3x02', '腹腔镜子宫骶韧带切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.41', '子宫裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4900x005', '子宫修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4900x006', '宫腔镜下子宫修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4901', '子宫陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4902', '腹腔镜子宫陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4903', '腹腔镜子宫修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.4904', '宫腔镜子宫陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.95', '子宫颈切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('69.9500x001', '宫颈闭锁切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7', '肾上腺区探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.01', '单侧肾上腺区探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.02', '双侧肾上腺区探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.21', '肾上腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.2102', '腹腔镜肾上腺病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.22', '单侧肾上腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.2201', '腹腔镜单侧肾上腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.2902', '腹腔镜肾上腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.61', '垂体腺部分切除术,经前额入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.6301', '垂体病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.8', '胸腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.8001', '胸腔镜下胸腺切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.81', '胸腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.8101', '胸腺病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.82', '胸腺其他全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.83', '胸腔镜下胸腺部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.84', '胸腔镜下胸腺全部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.91', '胸腺区探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.92', '胸腺其他切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.93', '胸腺修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('7.95', '胸腔镜下胸腺切开术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.11', '处女膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.12', '直肠子宫陷凹切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1200x001', '后穹窿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1201', '女性盆腔脓肿引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1202', '腹腔镜女性盆腔脓肿引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.13', '阴道管腔内粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1400x011', '阴道血肿切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1400x012', '阴道纵隔切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1402', '阴道狭窄切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1404', '阴道闭锁切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1405', '阴道切开异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1406', '阴道切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.1408', '宫腔镜阴道隔切断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.2301', '腹腔镜子宫直肠陷凹活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.32', '直肠子宫陷凹病损切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3200x002', '直肠子宫陷凹病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3201', '腹腔镜直肠子宫陷凹病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.33', '阴道病损切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3300x003', '阴道病损电切术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3301', '阴道病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3302', '阴道病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3303', '阴道囊肿袋形缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.3304', '处女膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x00', '阴道封闭术和全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x01', '阴道切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x02', '阴道部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x03', '阴道闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x04', '阴道部分闭合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.4x05', '腹腔镜辅助阴道切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5', '膀胱膨出和直肠膨出修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5001', '阴道前后壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5002', '腹腔镜阴道前后壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.51', '膀胱膨出修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5101', '阴道前壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5102', '腹腔镜阴道前壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.52', '直肠膨出修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5201', '阴道后壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5202', '腹腔镜阴道后壁修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5300x002', '阴道前后壁修补术伴人工补片置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5301', 'PROSIMA 全盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5302', 'PROLIFT 全盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5303', 'AVAULTA 全盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5304', '改良性全盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5305', '全盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5400x002', '阴道前壁修补术伴人工补片置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.5500x002', '阴道后壁修补术伴人工补片置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.6200x001', '人工阴道成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.6200x002', '阴道成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.6300x001', '腹腔镜下腹膜代阴道术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.6300x003', '腹腔镜下乙状结肠代阴道术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.71', '阴道裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7101', '后穹窿裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.72', '结肠阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.73', '直肠阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7501', '阴道瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.76', '处女膜修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.77', '阴道悬吊术和固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7700x004', '腹腔镜下阴道悬吊术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7701', '阴道悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7702', '骶棘韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7703', '耻骨梳韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.78', '用移植物或假体的阴道悬吊和固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7800x001', '阴道固定术(使用移植物或假体)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7800x002', '阴道悬吊术(使用移植物或假体)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7801', '阴道移植物固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7802', '腹腔镜阴道移植物固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.79', '阴道的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7900x005', '阴道断蒂缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7900x006', '阴道断蒂止血术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7900x010', '阴道黏膜瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7901', '阴道延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7902', '阴道扩张术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7903', '阴道缩窄术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7904', '阴道断蒂术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7905', '阴道残端缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7906', '阴道会阴成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7907', '阴道穹窿修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7908', '阴道陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.7909', '腹腔镜阴道会阴成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('70.9100x001', '阴道黏膜剥脱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.01', '外阴粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0100x002', '小阴唇粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0100x003', '大阴唇粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0100x004', '阴唇粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.09', '外阴和会阴的其他切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0900x001', '会阴切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0900x004', '外阴血肿清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0902', '外阴切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.0905', '会阴切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.23', '巴多林腺(囊肿)袋形合缝术[造袋术]', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.2300x001', '前庭大腺造袋术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.24', '巴多林腺(囊肿)切除术或其他破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.2400x001', '前庭大腺病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.2400x003', '前庭大腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.2900x002', '前庭大腺造口术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00', '外阴和会阴的其他局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x001', '大阴唇病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x007', '女性会阴部瘢痕切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x011', '外阴病损烧灼术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x013', '外阴窦道切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x021', '女性会阴皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x023', '女性外阴皮肤和皮下坏死组织切除清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x00x025', '小阴唇病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x01', '会阴病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x02', '会阴部异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x03', '外阴部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x04', '外阴病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.3x05', '外阴病损破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.4x00', '阴蒂手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.4x01', '阴蒂病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.4x02', '阴蒂切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.4x03', '阴蒂部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.5x00', '根治性外阴切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.5x00x001', '外阴广泛性切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.5x00x003', '外阴根治性局部扩大切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.5x00x004', '外阴根治性局部切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.61', '单侧外阴切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.62', '双侧外阴切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.6200x002', '外阴单纯切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.71', '外阴或会阴裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7101', '外阴裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7102', '会阴裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.72', '外阴或会阴瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7201', '外阴瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7202', '会阴瘘修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.79', '外阴和会阴的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x001', '会阴陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x008', '小阴唇成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x009', '大阴唇成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x010', '后盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x011', '前盆底重建术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7900x013', '阴唇成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7901', '外阴成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7902', '外阴陈旧性产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7903', '会阴成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.7904', '会阴陈旧性裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('71.8x00', '外阴的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('72.1x00', '低位产钳手术伴外阴切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('72.21', '中位产钳手术伴外阴切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('72.71', '真空吸引术伴外阴切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('72.7100x001', '胎头吸引伴会阴切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.6x00', '皮肤游离移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.6x00x002', '会阴中切缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.6x01', '会阴侧切缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.6x02', '会阴直切缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.93', '子宫颈切开助产', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('73.94', '耻骨切开助产', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.0x00', '古典式剖宫产', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.0x00x001', '子宫体剖宫产', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.0x00x002', '子宫上段剖宫产', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.1x00', '低位子宫下段剖宫产', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.1x01', '剖宫产术,子宫下段横切口', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.1x02', '剖宫产术,子宫下段直切口', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.2x00', '腹膜外剖宫产', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00', '输卵管外异位妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x006', '子宫韧带妊娠物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x012', '腹腔镜下卵巢切开胚胎清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x013', '卵巢切开胚胎清除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x014', '腹腔镜下子宫韧带妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x015', '腹腔镜下残角子宫妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x017', '宫腔镜下子宫角妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x018', '宫腔镜下子宫瘢痕妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x00x019', '经阴道子宫瘢痕妊娠切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x01', '腹腔妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x02', '子宫角妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x03', '子宫颈妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x04', '子宫瘢痕妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x05', '腹腔镜腹腔妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x06', '腹腔镜子宫角妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x07', '腹腔镜子宫肌壁间妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x08', '腹腔镜子宫瘢痕妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.3x09', '宫腔镜子宫肌壁间妊娠清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.4x00', '其他特指类型的剖宫产', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.4x01', '腹腔妊娠剖宫产术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.91', '子宫切开终止妊娠', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.9100x001', '腹腔镜下子宫切开的治疗性流产', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.9101', '腹腔镜子宫切开终止妊娠', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('74.99', '其他剖宫产', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.36', '胎儿缺陷矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.5', '子宫近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.51', '子宫颈近期产科裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.52', '子宫体近期产科裂伤修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.61', '膀胱和尿道近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6101', '膀胱近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6102', '尿道近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.62', '直肠和肛门括约肌近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6201', '直肠近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6202', '肛门括约肌近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.69', '其他近期产科裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6900x003', '阴道产科裂伤缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6901', '近期产科盆底裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6902', '近期产科会阴裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6903', '近期产科外阴裂伤修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.6904', '近期产科外阴切开Ⅱ期缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.91', '会阴产科切口血肿排除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9100x001', '产科会阴血肿去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.92', '外阴或阴道的其他血肿排除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9200x001', '产科外阴血肿去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9200x002', '产科阴道血肿去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9200x003', '子宫韧带血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9201', '外阴产科血肿排除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9202', '阴道产科血肿排除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.93', '内翻子宫的手术矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.99', '其他产科手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9900x006', '宫颈提拉式缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9900x007', '子宫缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('75.9901', '子宫捆绑术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.01', '面骨死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0101', '下颌骨死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0102', '上颌骨死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.09', '面骨的其他切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0900x001', '面骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0900x003', '下颌骨劈开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0900x004', '颌骨探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0901', '下颌骨切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0902', '上颌骨切开引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0903', '面骨骨折碎片取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0904', '颌骨囊肿开窗引流术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.0905', '面骨开窗术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.11', '面骨活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.1101', '颌骨活组织检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.19', '面骨和关节的其他诊断性操作', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.1901', '关节镜颞颌关节检查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x00', '面骨病损的局部切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x00x014', '面骨病损局部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x01', '下颌骨病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x02', '上颌骨病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x03', '面骨骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.2x04', '颌骨囊肿摘除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.31', '部分下颌骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3100x001', '下颌骨部分切除术伴植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3100x009', '髁突高位切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3100x010', '髁突摘除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3101', '下颌骨次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3102', '半下颌骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3103', '下颌骨角切骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3104', '下颌骨体切骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.39', '其他面骨部分骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3900x003', '鼻内窥镜下上颌骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3900x013', '面骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3900x014', '上颌骨部分切除伴人工骨置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3900x016', '上颌骨次全切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3901', '上颌骨部分切除伴植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3902', '上颌骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3903', '颧骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3904', '上颌骨部分切除伴假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.3905', '上颌骨切骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.41', '下颌骨全部切除术同时伴重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.42', '其他下颌骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4200x002', '下颌骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.43', '下颌骨其他重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4300x003', '下颌骨重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4301', '下颌骨缺损修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.44', '其他面骨的骨全部切除术同时伴重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4400x002', '面骨骨全部切除伴重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.45', '其他面骨的其他骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4500x003', '面骨骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4501', '眶骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4502', '上颌骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4503', '颧骨全切术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.46', '其他面骨的其他重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4600x001', '额骨重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4600x003', '眶外壁重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4600x004', '眉弓重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4600x005', '颧骨重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.4600x007', '上颌骨重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.5x00', '颞下颌关节成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.5x00x001', '关节镜下颞颌关节成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.61', '下颌支闭合性骨成形术[骨切开术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.62', '开放性下颌支骨成形术[骨切开术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.63', '下颌骨体骨成形术[骨切开术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.64', '下颌骨的其他颌骨矫形手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6400x002', '下颌下缘去骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6400x008', '下颌角成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6400x016', '下颌根尖下截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6400x017', '下颌矢状劈开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6401', '下颌骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6402', '下颌骨截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6403', '下颌后退术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6404', '下颌前徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.65', '上颌骨节段骨成形术[骨切开术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6500x004', '上颌骨部分骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6500x006', '上颌 LeFortΙ型分块截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6500x008', '上颌 LeFortⅡ型分块截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6500x009', '上颌 LefortⅢ型截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6501', '上颌骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6502', '上颌 LefortⅠ型截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6503', '上颌 LefortⅡ型截骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.66', '上颌骨全骨成形术[骨切开术]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.67', '颏缩小成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.68', '增大性颏成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6800x002', '颏成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6800x003', '颏增大成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6801', '颏硅胶植入增大成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6802', '隆颏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.69', '其他面骨修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6900x003', '颧弓降低术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6900x004', '髁突成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6901', '颌骨修整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6902', '面骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6903', '颧骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6904', '颧弓成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.6905', '颧骨增高术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7', '面骨骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.71', '颧骨骨折闭合性复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.72', '颧骨骨折开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7200x001', '颧弓骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7201', '颧骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7300x001', '鼻内窥镜下上颌骨骨折闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.74', '上颌骨骨折开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7401', '上颌骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.76', '下颌骨骨折开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7601', '髁状突骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7602', '下颌骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.77', '牙槽骨折开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7701', '牙槽骨折切开复位内固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7702', '牙槽骨骨折切开复位伴牙齿栓结术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.78', '面骨骨折的其他闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7800x001', '面骨骨折闭合复位拉力螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7800x003', '齿槽骨折闭合复位内固定术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7801', '眶骨骨折闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7802', '内镜下眶壁骨折整复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.79', '面骨骨折的其他开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7900x001', '眶壁骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7900x006', '面骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7900x013', '髁突骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7901', '面骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7902', '眶骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.7903', '眶骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.91', '面骨骨移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9100x002', '面骨自体骨植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9100x004', '上颌骨自体骨植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9100x007', '下颌骨自体骨植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9100x008', '眼眶骨片垫高术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9100x009', '眶骨缺损修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9101', '下颌骨骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9102', '上颌骨骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.92', '合成物面骨植入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x001', '面骨硅胶假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x003', '面骨钛网置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x004', '下颌骨钛板置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x005', '面部生物材料充填术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x006', '眶骨异质成形物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x007', '面骨钛网修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x008', '面骨人工骨置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x009', '面骨人工珊瑚置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x010', '面骨表面植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x011', '上颌骨钛板置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x012', '上颌骨人工假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9200x013', '下颌骨人工假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9201', '上颌骨合成物植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9202', '下颌骨合成物植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.94', '颞下颌脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.95', '颞下颌关节的其他操作', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9500x003', '颞下颌关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9500x004', '颞下颌关节置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9500x005', '颞颌关节盘切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9500x006', '颞颌髁突切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9500x007', '颞颌关节盘固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9501', '颞下颌关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.97', '去除面骨内固定装置', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9701', '下颌骨内固定装置取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9702', '上颌骨内固定装置取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.99', '面骨和关节的其他手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('76.9901', '面骨假体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77', '死骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.01', '肩胛骨,锁骨和胸廓[肋骨和胸骨]死骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0101', '肩胛骨死骨去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0102', '锁骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.02', '肱骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.03', '桡骨和尺骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0301', '桡骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0302', '尺骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.04', '腕骨和掌骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0401', '腕骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0402', '掌骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.05', '股骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.06', '髌骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.07', '胫骨和腓骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0701', '胫骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0702', '腓骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.08', '跗骨和跖骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0801', '跗骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0802', '跖骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.09', '其他死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0900x004', '足骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0900x005', '坐骨死骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0902', '指骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.0903', '趾骨死骨去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1001', '骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1002', '骨碎片去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1003', '骨钻孔减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1101', '肩胛骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1102', '锁骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.12', '肱骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1200x001', '肱骨开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.13', '桡骨和尺骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1301', '桡骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1302', '尺骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.14', '腕骨和掌骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1401', '腕骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1402', '掌骨切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.15', '股骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1500x001', '股骨颈开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1500x002', '股骨开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1500x003', '股骨头开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1500x005', '股骨髁开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1500x006', '股骨钻孔减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1501', '股骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1502', '股骨减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.16', '髌骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1600x001', '髌骨开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1601', '髌骨减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.17', '胫骨和腓骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1700x001', '胫骨开窗引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1701', '胫骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1702', '胫骨减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1703', '腓骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.18', '跗骨和跖骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1801', '跗骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1802', '跗骨减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1803', '跖骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.19', '其他骨其他切开术不伴切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1900x004', '椎骨负压引流管置入术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1902', '指骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1903', '趾骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.1904', '椎骨切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2100x002', '锁骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2102', '锁骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2200x001', '肱骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2200x002', '肱骨外科颈部分切骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2200x003', '肱骨髁上截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.23', '桡骨和尺骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2300x001', '尺骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2300x002', '桡骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2301', '桡骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2302', '尺骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.24', '腕骨和掌骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2400x002', '掌骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2401', '腕骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2402', '掌骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.25', '股骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x001', '股骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x002', '股骨上端截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x003', '股骨粗隆间截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x004', '股骨粗隆下截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x005', '股骨麦氏截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x006', '股骨髁上截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x007', '股骨下端截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x008', '股骨粗隆部旋转截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2500x009', '股骨粗隆下内收截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.26', '髌骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.27', '胫骨和腓骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2700x001', '腓骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2700x003', '胫骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2701', '胫骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2702', '胫骨上端高位截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2703', '腓骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.28', '跗骨和跖骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2800x001', '跗骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2800x002', '跖骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2801', '跗骨楔形切骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2802', '跖骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.29', '其他骨楔形骨切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2900x003', '指骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2900x005', '趾骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2900x006', '跟骨截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2900x008', '髂骨截骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2902', '指骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.2903', '趾骨楔形截骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3', '骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3001', '骨关节切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3102', '锁骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.32', '肱骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.33', '桡骨和尺骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3301', '桡骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3302', '尺骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.34', '腕骨和掌骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3401', '腕骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3402', '掌骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.35', '股骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.36', '髌骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.37', '胫骨和腓骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3701', '胫骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3702', '腓骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.38', '跗骨和跖骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3801', '跗骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3802', '跖骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.39', '其他骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3902', '髂骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3903', '耻骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3904', '坐骨耻骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3905', '耻骨联合切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3906', '指骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.3907', '趾骨切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4', '骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4101', '肩胛骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4102', '锁骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.42', '肱骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.43', '桡骨和尺骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4301', '桡骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4302', '尺骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.44', '腕骨和掌骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4401', '腕骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4402', '掌骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.45', '股骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.46', '髌骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.47', '胫骨和腓骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4701', '胫骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4702', '腓骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.48', '跗骨和跖骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4801', '跗骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4802', '跖骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.49', '其他骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4900x004', '跟骨活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4900x005', '距骨活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4900x006', '楔骨活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4900x007', '髂骨活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4901', '骨盆活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4902', '指骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4903', '趾骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.4904', '椎骨活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.51', '囊肿切除术伴软组织矫正术和第一跖骨切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.52', '囊肿切除术伴软组织矫正术和关节固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.53', '其他囊肿切除术伴软组织矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.54', '小趾囊肿切除术或矫正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5400x001', '小趾囊肿切除矫正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.56', '锤状趾修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5600x002', '锤状趾矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.57', '爪形趾修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5700x001', '爪形趾矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.58', '趾的其他切除术、融合和修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5800x007', '巨趾矫正术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5801', '翘趾修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5802', '叠交趾修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.59', '其他囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5900x001', '(足母)囊切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.5900x002', '凯勒手术(Keller 术)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6', '骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6102', '锁骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.62', '肱骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6201', '肱骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.63', '桡骨和尺骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6301', '桡骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6302', '尺骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.64', '腕骨和掌骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6401', '腕骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6402', '掌骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.65', '股骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6501', '股骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.66', '髌骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6601', '髌骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.67', '胫骨和腓骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6701', '胫骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6702', '腓骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.68', '跗骨和跖骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6801', '跗骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6802', '跖骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.69', '其他骨病损或组织的局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x007', '跟骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x013', '踝骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x020', '距骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x025', '髂骨病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x039', '腰椎病损切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x047', '足骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x057', '髋臼病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6900x058', '坐骨病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6902', '指骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6903', '趾骨病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6905', '内镜下脊柱病灶清除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.6906', '内镜下椎间隙病灶清除引流术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7', '骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.71', '肩胛骨,锁骨和胸廓[肋骨和胸骨]切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.72', '肱骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.73', '桡骨和尺骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7301', '桡骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7302', '尺骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.75', '股骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.77', '胫骨和腓骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7702', '腓骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.79', '其他骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7900x001', '跟骨取骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.7901', '髂骨切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8101', '肩胛骨部分切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8102', '肩峰切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8104', '锁骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8105', '锁骨头切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.82', '肱骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8200x002', '肱骨髁部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.83', '桡骨和尺骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8300x002', '尺骨头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8300x005', '桡骨茎突切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8300x006', '桡骨小头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8301', '桡骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8302', '桡骨头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8303', '尺骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.84', '腕骨和掌骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8501', '股骨头颈切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.86', '髌骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.87', '胫骨和腓骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8700x003', '腓骨小头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8701', '胫骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8702', '腓骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.88', '跗骨和跖骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8801', '跗骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8802', '跖骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.89', '其他骨部分骨切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8900x026', '足骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8900x027', '跟骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8900x028', '副舟骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8903', '指骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8904', '趾骨部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.8908', '尾骨部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.92', '肱骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.93', '桡骨和尺骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9301', '桡骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9302', '尺骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9402', '掌骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.95', '股骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.96', '髌骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.97', '胫骨和腓骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9701', '胫骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9702', '腓骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.98', '跗骨和跖骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9804', '跖骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9805', '籽骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9902', '指骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('77.9903', '趾骨全部切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78', '骨移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0000x003', '同种异体骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0100x002', '锁骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0101', '肩胛骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0102', '锁骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.02', '肱骨移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0200x001', '肱骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0200x002', '肱骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0300x004', '尺骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0300x005', '桡骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0301', '桡骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0302', '尺骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0400x001', '掌骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0401', '腕骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0402', '舟状骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0403', '掌骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0500x001', '股骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0500x002', '股骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0501', '股骨颈骨折骨栓植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0600x001', '髌骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0600x003', '髌骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0700x004', '胫骨人工骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0700x006', '腓骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0701', '胫骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0702', '腓骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0801', '跗骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0802', '跖骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.09', '其他骨移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x001', '跟骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x010', '腰椎植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x012', '髋骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x014', '跟骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x016', '髋骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x017', '髂骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x018', '胸椎人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x019', '腰椎人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x020', '指骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x021', '趾骨人工骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0900x022', '髂骨植骨术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0902', '指骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.0903', '趾骨植骨术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1', '使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1102', '锁骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.12', '肱骨使用外固定装置', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1201', '肱骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.13', '桡骨和尺骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1301', '桡骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1302', '尺骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.14', '腕骨和掌骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1401', '腕骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1402', '掌骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.15', '股骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1501', '股骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.16', '髌骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1601', '髌骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.17', '胫骨和腓骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1701', '胫骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1702', '腓骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.18', '跗骨和跖骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1801', '跗骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1802', '跖骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.19', '其他骨使用外固定装置', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1901', '盆骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1902', '指骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.1903', '趾骨外固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.23', '桡骨和尺骨缩短手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.2301', '桡骨缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.2302', '尺骨缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.24', '腕骨和掌骨缩短手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.2901', '指骨短缩术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.2902', '趾骨短缩术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.4600x002', '髌骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.4700x001', '胫骨结节移位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.4900x006', '趾骨矫正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5', '骨内固定不伴骨折复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.51', '肩胛骨,锁骨和胸廓[肋骨和胸骨]内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x004', '锁骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x013', '肩胛骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x014', '肩胛骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x015', '肩胛骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x016', '锁骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x017', '锁骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5100x018', '锁骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5101', '肩胛骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5102', '锁骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.52', '肱骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5200x003', '肱骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5200x004', '肱骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5200x005', '肱骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5200x006', '肱骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5201', '肱骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.53', '桡骨和尺骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x002', '尺骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x003', '尺骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x004', '尺骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x005', '桡骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x006', '桡骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x007', '桡骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x008', '桡骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5300x009', '尺骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5301', '桡骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5302', '尺骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.54', '腕骨和掌骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x003', '腕骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x004', '腕骨空心钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x005', '掌骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x006', '掌骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x007', '掌骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x008', '掌骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x009', '腕骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x010', '腕骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5400x011', '掌骨钢丝内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5401', '腕骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5402', '掌骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.55', '股骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5500x003', '股骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5500x005', '股骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5500x006', '股骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5500x007', '股骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5500x008', '股骨头重建棒置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5501', '股骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.56', '髌骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5600x001', '髌骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5600x002', '髌骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5600x003', '髌骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5601', '髌骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.57', '胫骨和腓骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x003', '腓骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x004', '腓骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x005', '胫骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x006', '胫骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x007', '胫骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x008', '胫骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x009', '腓骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x010', '腓骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x011', '膝关节镜下后交叉韧带止点撕脱骨折固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x012', '膝关节镜下胫骨髁间棘骨折固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5700x013', '关节镜下胫骨钢丝内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5701', '胫骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5702', '腓骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.58', '跗骨和跖骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x002', '跗骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x003', '跗骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x005', '跖骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x006', '跖骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x007', '跖骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x008', '跖骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5800x009', '跗骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5801', '跗骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5802', '跖骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.59', '其他骨内固定不伴骨折复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x019', '指骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x020', '趾骨钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x022', '椎弓根钉内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x025', '椎骨内固定修正术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x027', '骨盆钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x028', '骨盆钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x029', '骨盆螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x031', '指骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x032', '指骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x033', '指骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x034', '趾骨钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x035', '趾骨螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5900x036', '趾骨髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5901', '骨盆内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5902', '指骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5903', '趾骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.5904', '椎骨内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6', '骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.61', '肩胛骨,锁骨和胸廓[肋骨和胸骨]置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6100x004', '肩锁关节内固定物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6101', '肩胛骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6102', '肩胛骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6103', '锁骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6104', '锁骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.62', '肱骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6201', '肱骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6202', '肱骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.63', '桡骨和尺骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6301', '桡骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6302', '桡骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6303', '尺骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6304', '尺骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.64', '腕骨和掌骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6401', '腕骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6402', '腕骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6403', '掌骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6404', '掌骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.65', '股骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6501', '股骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6502', '股骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.66', '髌骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6600x002', '膝关节内固定物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6600x003', '膝关节镜下内固定物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6601', '髌骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6602', '髌骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.67', '胫骨和腓骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6701', '胫骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6702', '胫骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6703', '腓骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6704', '腓骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6705', '踝关节内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6706', '踝关节外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.68', '跗骨和跖骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6800x005', '楔骨内固定物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6801', '跗骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6802', '跗骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6803', '跖骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6804', '跖骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.69', '其他骨置入装置去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6900x002', '跟骨内固定物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6900x008', '髋关节内固定物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6900x010', '椎骨内固定物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6900x016', '椎骨外固定架去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6901', '骨盆内固定装置去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6902', '骨盆外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6903', '指骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6904', '指骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6905', '趾骨内固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6906', '趾骨外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6907', '脊柱内固定装置去除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('78.6908', '脊柱外固定装置去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.0100x001', '肱骨骨折闭合复位术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.0400x004', '指关节骨折闭合复位术(腕掌关节、掌指关节、指间关节)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.0500x002', '股骨骨折闭合复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.0700x002', '距骨骨折闭合复位术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.0700x005', '跟骨骨折闭合复位术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1', '骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.11', '肱骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1100x002', '肱骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1100x003', '肱骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1100x004', '肱骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1100x005', '肱骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.12', '桡骨和尺骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x003', '尺骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x004', '桡骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x005', '尺骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x006', '桡骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x007', '尺骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x008', '桡骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x009', '尺骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1200x010', '桡骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1201', '桡骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1202', '尺骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.13', '腕骨和掌骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x003', '腕骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x004', '掌骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x005', '腕骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x006', '掌骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x007', '腕骨骨折闭合复位空心钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x008', '掌骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1300x009', '掌骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1301', '腕骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1302', '掌骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.14', '手指骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1400x002', '指骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1400x003', '指骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1400x004', '指骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.15', '股骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1500x006', '股骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1500x007', '股骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1500x008', '股骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.16', '胫骨和腓骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x004', '胫骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x006', '胫骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x007', '踝关节骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x008', '踝关节骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x009', '腓骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x010', '腓骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x011', '腓骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x012', '胫骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x013', '踝关节骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1600x014', '腓骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1601', '胫骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1602', '腓骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1603', '踝关节骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.17', '跗骨和跖骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x005', '跖骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x006', '跖骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x007', '跗骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x009', '跟骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x010', '跟骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x011', '跖骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1700x012', '跗骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1701', '跗骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1702', '跖骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.18', '趾骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1800x002', '趾骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1800x003', '趾骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.19', '其他骨骨折闭合性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1900x005', '髌骨骨折闭合复位空心钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1900x006', '锁骨骨折闭合复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1900x007', '锁骨骨折闭合复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1900x008', '锁骨骨折闭合复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1900x009', '锁骨骨折闭合复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1902', '锁骨骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.1903', '骨盆骨折闭合复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2', '骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.21', '肱骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2101', '肱骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.22', '桡骨和尺骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2201', '桡骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2202', '尺骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.23', '腕骨和掌骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2301', '腕骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2302', '掌骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.24', '手指骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2400x002', '指关节骨折切开复位术(腕掌关节、掌指关节、指间关节)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2401', '指骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.25', '股骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2501', '股骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.26', '胫骨和腓骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2601', '胫骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2602', '腓骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2603', '踝关节骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.27', '跗骨和跖骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2700x004', '跟骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2701', '跗骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2702', '跖骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.28', '趾骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2801', '趾骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.29', '其他骨骨折开放性复位术不伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2900x004', '髌骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.2901', '锁骨骨折切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3', '骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.31', '肱骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3100x004', '肱骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3100x005', '肱骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3100x006', '肱骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3100x007', '肱骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3100x008', '肱骨骨折切开复位空心钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3101', '肱骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.32', '桡骨和尺骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x001', '尺骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x002', '尺骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x009', '尺骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x010', '尺骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x011', '桡骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x012', '桡骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x013', '桡骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3200x014', '桡骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3201', '桡骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3202', '尺骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.33', '腕骨和掌骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x005', '掌骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x006', '掌骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x007', '掌骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x008', '掌骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x009', '腕骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x010', '腕骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x012', '腕骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3300x013', '腕骨骨折切开复位空心钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3301', '腕骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3302', '掌骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.34', '手指骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3400x002', '指骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3400x003', '指骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3400x004', '指骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3400x005', '指骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3400x006', '指关节骨折切开复位内固定术(腕掌关节、掌指关节、指间关节)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3401', '指骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.35', '股骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3500x016', '股骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3500x017', '股骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3500x018', '股骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3500x019', '股骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3500x020', '股骨骨折切开复位钢丝内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3501', '股骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.36', '胫骨和腓骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x008', '腓骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x009', '踝关节骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x010', '踝关节骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x011', '踝关节骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x012', '踝关节骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x013', '胫骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x014', '胫骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x015', '胫骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x016', '胫骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x017', '腓骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x018', '腓骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3600x019', '腓骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3601', '胫骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3602', '腓骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3603', '踝关节骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3604', '髌骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.37', '跗骨和跖骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x010', '跗骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x011', '跗骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x012', '跗骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x013', '跟骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x014', '跟骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x015', '跖骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x016', '跖骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x017', '跖骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x018', '跟骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x019', '跖骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3700x020', '楔骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3701', '跗骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3702', '跖骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.38', '趾骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3800x002', '趾骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3800x003', '趾骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3800x004', '趾骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.39', '其他骨骨折开放性复位术伴内固定', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x001', '髌骨骨折切开复位张力带钢丝内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x002', '髌骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x025', '骨盆骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x026', '骨盆骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x027', '骨盆骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x028', '肩胛骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x030', '肩胛骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x031', '距骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x033', '距骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x037', '髂骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x039', '髂骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x040', '锁骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x041', '锁骨骨折切开复位髓内针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x042', '锁骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x043', '骨盆骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x044', '肩胛骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x045', '髋骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x046', '髋骨骨折切开复位螺钉内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x048', '髋骨骨折切开复位钢针内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x050', '髂骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x051', '锁骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x052', '髌骨骨折切开复位聚髌器内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3900x055', '距骨骨折切开复位钢板内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3901', '盆骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3902', '肩胛骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.3904', '锁骨骨折切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4', '骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.41', '肱骨骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4101', '肱骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.42', '桡骨和尺骨骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4201', '桡骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4202', '尺骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.45', '股骨骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4501', '股骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.46', '胫骨和腓骨骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4601', '胫骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.4602', '腓骨骨骺分离闭合复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.49', '其他骨骨骺分离的闭合性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5', '骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.51', '肱骨骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.52', '桡骨和尺骨骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5201', '桡骨骨骺分离切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5202', '尺骨骨骺分离切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.55', '股骨骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5501', '股骨骨骺分离切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.56', '胫骨和腓骨骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5601', '胫骨骨骺分离切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.5602', '腓骨骨骺分离切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.59', '其他骨骨骺分离的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6', '开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.61', '肱骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.62', '桡骨和尺骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6201', '桡骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6202', '尺骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.63', '腕骨和掌骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6301', '腕骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6302', '掌骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.64', '手指开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.65', '股骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.66', '胫骨和腓骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6601', '胫骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6602', '腓骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.67', '跗骨和跖骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6701', '跗骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6702', '跖骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.68', '趾开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.69', '其他骨开放性骨折部位的清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6900x002', '髌骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.6900x003', '锁骨开放性骨折清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.7600x001', '髌骨脱位闭合复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.7900x005', '桡尺关节脱位闭合复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8', '脱位的开放性复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.81', '肩脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8100x003', '肩关节脱位切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.82', '肘脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8200x001', '肘关节脱位切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8201', '桡骨头脱位切开复位术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.83', '腕脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8300x001', '腕关节脱位切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8301', '腕掌关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.84', '手和指脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8401', '指关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8402', '掌指关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.85', '髋脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8500x001', '髋关节脱位切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.86', '膝脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.87', '踝脱位开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.88', '足和趾脱位的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8801', '趾关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8802', '距下关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8803', '跖跗关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.89', '其他特指部位脱位的开放性复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8900x001', '尺桡关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8900x005', '腕掌关节切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8900x006', '腰椎脱位切开复位内固定术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8901', '胸锁关节切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8902', '肩锁关节脱位切开复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.8903', '肩锁关节脱位切开复位内固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.9', '骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.91', '肱骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.92', '桡骨和尺骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.93', '腕骨和掌骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.94', '手指骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.95', '股骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.96', '胫骨和腓骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.97', '跗骨和跖骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.98', '趾骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('79.99', '其他骨损伤的手术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.01', '睑缘切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.02', '睑缝合后切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.09', '眼睑其他切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.0901', '眼睑切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.0902', '眼睑切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.0903', '眼睑粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.0904', '眼睑切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.2', '去除眼睑病损', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.2001', '眉部病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.2002', '睑板腺切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.2003', '眦病损切除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.21', '睑板腺囊肿切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.22', '眼睑其他较小的病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.2201', '睑板腺病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.23', '眼睑较大的病损切除术,板层', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.24', '眼睑较大的病损切除术,全层', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.25', '眼睑病损破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.31', '上睑下垂修补术,用额肌法伴缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.3101', '上睑下垂额肌瓣悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.3102', '额肌缝线睑下垂修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.32', '上睑下垂修补术,用额肌法伴筋膜吊带法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.3201', '硬脑膜异体额肌悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.3202', '眼阔筋膜悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.33', '上睑下垂修补术,用部分切除术或上睑肌或腱膜前徙术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.34', '上睑下垂修补术,用其他提上睑肌法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.35', '上睑下垂修补术,用睑板法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.36', '上睑下垂修补术,用其他方法', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.37', '上睑下垂矫正过度复位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.38', '睑退缩矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.41', '睑内翻或睑外翻的修补术,用热灼法', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4101', '睑外翻热灼修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4102', '睑内翻热灼修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.42', '睑内翻或睑外翻的修补术,用缝合术法', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4201', '睑外翻缝合修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4202', '睑内翻缝合修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4203', '睑轮匝肌缩短睑内翻修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4204', '睑轮匝肌重叠,睑外翻修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.43', '睑内翻或睑外翻的修补术伴楔形部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4301', '睑外翻楔形切除修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4302', '睑内翻楔形切除修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.44', '睑内翻或睑外翻的修补术伴睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4401', '睑内翻矫正伴睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4402', '睑外翻矫正伴睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4403', 'Wheeler 睑内翻修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.49', '睑内翻或睑外翻的其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4901', '睑外翻矫正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.4902', '睑内翻矫正术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.51', '眦切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.5101', '睑裂增大术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.52', '睑缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.59', '其他眼睑位置调整术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.5901', '内眦赘皮修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.5902', '眦成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.5903', '眶距增宽矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.5904', '眦韧带悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.61', '用皮瓣或移植物的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.6101', '局部皮瓣转位眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.6102', '眼睑皮片移植重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.6103', '带蒂头皮瓣眉再造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.62', '用黏膜瓣或移植物的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.6201', '黏膜瓣移植眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.63', '用毛囊移植片的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.6301', '头皮移植法眉毛再造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.64', '用结膜睑板移植片的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.69', '用皮瓣或移植物的其他眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.7', '眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.7001', '眉重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.71', '涉及睑缘,板层的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.72', '其他板层的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.73', '涉及睑缘全层的眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.74', '其他全层眼睑重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.81', '眼睑或眉裂伤的线形修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.8101', '眼睑裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.8102', '眉裂伤缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.82', '涉及睑缘板层裂伤的修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.83', '眼睑板层裂伤的其他修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.84', '涉及睑缘全层裂伤的修补术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.85', '眼睑全层裂伤的其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.86', '下眼睑皱纹切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.87', '上眼睑皱纹切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.89', '其他眼睑修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.8901', '外眦皱纹切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.8902', '重睑术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.8903', '眉修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.99', '眼睑其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('8.9901', '睫毛重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80', '关节切开术用于去除假体不伴置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.01', '肩关节切开术用于去除假体不伴置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0100x001', '肩关节假体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0100x002', '肩关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0101', '肩关节切开假体去除关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.05', '髋关节切开术用于去除假体不伴置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0500x001', '髋关节假体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0500x003', '髋关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0501', '髋关节切开假体去除关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.06', '膝关节切开术用于去除假体不伴置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0600x001', '膝关节假体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0600x002', '膝关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.0601', '膝关节切开假体去除关节旷置术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.07', '踝关节切开术用于去除假体不伴置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1', '关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.11', '肩关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1101', '关节镜肩关节游离体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.13', '腕关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.14', '手和指关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.15', '髋关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.16', '膝关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1601', '膝关节游离体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1602', '膝关节异物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1603', '膝关节血肿清除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1604', '关节镜膝关节游离体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.17', '踝关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1701', '踝关节游离体取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.18', '足和趾关节切开术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1801', '跖趾关节切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.1802', '趾关节切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.19', '其他特指部位关节切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.2', '关节镜检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.21', '关节镜肩关节检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.26', '关节镜膝关节检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.3', '关节结构的活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.31', '肩关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.32', '肘关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.33', '腕关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.34', '手和指关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.3401', '指关节活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.35', '髋关节结构的活组织检查', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.36', '膝关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.37', '踝关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.38', '足和趾关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.39', '其他特指部位关节结构的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4101', '肩关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4201', '肘关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4300x001', '腕关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4302', '腕韧带松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4400x001', '指关节囊松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4400x004', '掌指关节侧副韧带松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4401', '指关节松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4402', '指韧带松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4500x001', '髋关节囊松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4501', '髋关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4601', '膝关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4602', '髌韧带松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4603', '关节镜膝关节松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4800x002', '(足母)趾关节松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4800x005', '距下关节囊松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4801', '跖关节松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.4802', '趾关节松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5', '椎间盘切除术或破坏术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.51', '椎间盘切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5100x035', '腰椎间盘切除伴椎板切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5100x036', '腰椎间盘切除伴半椎板切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5100x038', '腰椎间盘髓核切除伴椎板切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5107', '腰椎间盘切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5108', '腰椎间盘切除伴椎管减压术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5109', '腰椎髓核切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.511', '内镜下腰椎间盘切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5111', '内镜下腰椎髓核切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.5900x001', '椎间盘射频消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x00', '膝半月软骨切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x00x002', '膝半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x00x010', '膝关节镜下外侧半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x00x011', '膝关节镜下内侧半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x01', '膝内侧半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x02', '膝外侧半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x03', '膝半月板部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x04', '膝盘状半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x05', '关节镜膝关节半月板切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x06', '关节镜膝关节半月板部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x07', '关节镜膝内侧半月板部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.6x08', '关节镜膝外侧半月板部分切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.7', '关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.74', '手和指关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.76', '膝关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.7601', '关节镜膝关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.78', '足和趾关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.79', '其他特指部位关节滑膜切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8101', '肩关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8201', '肘关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8301', '腕关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8401', '指关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8501', '髋关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8600x009', '膝关节镜下微骨折术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8601', '膝关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8602', '关节镜膝关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8701', '踝关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8800x003', '(足母)囊病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.8801', '趾关节病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.9800x001', '跖趾关节切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('80.9900x002', '假关节切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0502', '胸腰椎融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0701', '腰椎后柱融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0702', '腰骶椎后柱融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0800x018', '经椎间孔入路腰椎体融合术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0801', '腰椎椎体间融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.0802', '腰骶椎椎体间融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.11', '踝融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1101', '胫距关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.12', '三关节固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1200x001', '足三关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.13', '距骨下融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1300x003', '距下关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.14', '跗骨间融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1401', '跟骰关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.15', '跗跖融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.16', '跖趾融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.17', '足的其他融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1700x001', '跟骨关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.1700x003', '趾关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.18', '距下关节关节制动术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.22', '膝关节固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2201', '膝关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2401', '肘关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.25', '腕桡融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2500x002', '全腕关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.27', '掌指融合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2701', '掌指关节固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.28', '指间融合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2801', '指间关节固定术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.2902', '胸锁关节融合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.3800x005', '经椎间孔入路腰椎体翻修术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.3801', '腰椎椎体间再融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.3802', '腰骶椎椎体间再融合术,后入路', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.43', '膝关节三联修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4401', '关节镜髌骨稳定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4402', '髌骨支持带外侧松解,内侧紧缩术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4403', '髌骨习惯性脱位韧带成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4503', '关节镜膝关节交叉韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4504', '关节镜膝关节前交叉韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4505', '关节镜膝关节后交叉韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.46', '副韧带的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4600x001', '副韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4601', '关节镜膝关节副韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.47', '膝关节的其他修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4700x001', '膝关节半月板成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4700x005', '膝关节镜下半月板成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4700x013', '膝关节镜下半月板缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4700x015', '膝关节镜下软骨成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4700x017', '膝关节镜下软骨修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4901', '踝关节内侧韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.4902', '踝关节外侧韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.51', '全髋关节置换', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.52', '髋关节部分置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5200x004', '人工双动股骨头置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5201', '人工股骨头置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5202', '人工髋臼置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.54', '全部膝关节置换', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5400x004', '膝关节单髁表面置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5400x005', '膝关节髌股表面置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5400x008', '铰链式人工膝关节置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.5401', '部分膝关节置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.62', '2-3 个椎骨融合或再融合', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.65', '经皮椎骨成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.66', '经皮椎体增强', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.6600x001', '经皮穿刺脊柱后凸成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.6600x002', '腰椎骨折球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.6600x003', '胸椎骨折球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.6601', '经皮椎体球囊扩张成形术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.8101', '人工肱骨头置换术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.8300x006', '肩袖修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.8300x008', '肩关节镜下肩袖修补术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.8301', '肩峰成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.8400x002', '人工桡骨头置换术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9300x007', '指关节囊缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9300x008', '指间关节侧副韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9300x010', '肘关节韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9302', '上肢韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9400x001', '踝关节韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9402', '踝关节韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9404', '足韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.95', '其他下肢关节囊或韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9500x001', '髌韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9502', '下肢韧带缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x003', '髌韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x015', '韧带修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x022', '膝关节镜下膝关节内侧髌股韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x023', '膝关节内侧髌股韧带重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x024', '膝关节镜下膝后十字韧带再附着术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x025', '膝后十字韧带再附着术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x026', '膝关节镜下髌骨内侧支持带紧缩缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x027', '髌骨内侧支持带紧缩缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x028', '膝关节镜下髌韧带移位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x030', '膝关节镜下髌骨外侧支持带松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('81.9600x031', '髌骨外侧支持带松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.01', '手腱鞘探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0101', '手部腱鞘松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0102', '手腱鞘切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0103', '手部肌腱切开异物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.02', '手肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0200x001', '手部肌肉切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0201', '手部肌肉异物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.03', '手黏液囊切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.04', '掌间隙或鱼际间隙切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0401', '掌间隙切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0402', '鱼际间隙切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.09', '手软组织的其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0901', '手部软组织切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.0902', '手部软组织切开异物去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.11', '手肌腱切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.12', '手筋膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.1200x002', '掌筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.1201', '手部筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.1202', '手部筋膜粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.1900x002', '手部肌肉松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.21', '手腱鞘病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.2101', '手部腱鞘囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.22', '手肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.29', '手软组织的其他病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.2900x001', '手部软组织病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.31', '手黏液囊切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.32', '手肌腱切除术用做移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3301', '手部腱鞘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3500x001', '掌腱膜部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3500x002', '掌腱膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3501', '掌腱膜挛缩松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3600x001', '手部肌肉切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3601', '手部肌肉清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.39', '手软组织的其他切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.3900x001', '手部软组织切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.41', '手腱鞘缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.42', '手屈肌腱延迟性缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.43', '手的其他肌腱延迟性缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4300x001', '手部肌腱延迟性缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4301', '手部伸肌腱延迟性缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.44', '手部屈肌腱的其他缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4400x001', '屈腕肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4400x002', '屈指肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.45', '手的其他肌腱其他缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x001', '拇长伸肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x009', '伸指总肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x010', '伸指肌腱侧束缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x011', '伸指肌腱中央束缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x012', '伸腕肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4500x013', '伸指肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4501', '手部伸肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.46', '手部肌肉或筋膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4601', '手部筋膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.4602', '手部肌肉缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.5301', '手部肌腱止点重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.5501', '手部肌腱延长术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.5502', '手部肌腱缩短术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.5600x002', '手部自体肌腱移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.71', '手肌腱滑车重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.7100x002', '指浅屈肌替代法屈肌腱滑车重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.8300x001', '巨指矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.8400x001', '槌状指矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.8500x001', '手部肌腱固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.89', '手其他整形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.91', '手粘连松解', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9100x004', '手指肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9101', '手部筋膜松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9102', '手部肌肉粘连松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9103', '手部肌腱粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9300x001', '手软组织抽吸术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('82.9600x001', '手软组织局部作用治疗性物质注射', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.01', '腱鞘探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0100x001', '肌腱探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0101', '腱鞘切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0102', '腱鞘松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0103', '腱鞘米粒样小体去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.02', '肌切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0200x005', '前臂切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0200x006', '小腿减张术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0201', '肌肉筋膜切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0202', '肌肉切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0203', '肌肉切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0204', '肌肉切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.03', '黏液囊切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.09', '软组织的其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0900x003', '筋膜间隙切开减压术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0901', '筋膜切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0902', '软组织探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0903', '软组织切开异物取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.0904', '软组织切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1101', '跟腱挛缩松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.12', '髋部内收肌腱切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1300x004', '前臂肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1300x006', '下肢肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1300x007', '肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1300x008', '跖腱膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1301', '足部肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1303', '腕部屈肌腱松解术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1400x006', '跖筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1400x008', '趾筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1402', '足筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1403', '臀筋膜切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1405', '髂胫束切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1900x018', '斜颈腱性条索切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.1900x020', '胸锁乳突肌部分切断术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.21', '软组织活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.29', '肌、腱、筋膜和黏液囊的其他诊断性操作,包括手的', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.2900x001', '肌腱、血管、神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.2900x002', '手肌腱、血管、神经探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.2900x003', '足血管、神经、肌腱探查术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.31', '腱鞘病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3100x001', '跟腱病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3101', '腱鞘囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.32', '肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3200x001', '背部肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3200x007', '躯干肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3200x009', '上肢肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3200x012', '下肢肌肉病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3201', '骨化性肌炎切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.39', '其他软组织病损的切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3900x001', '腘窝病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3900x016', '滑囊病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3900x017', '软组织病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3901', '肌腱病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3902', '腘窝囊肿切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3903', '筋膜病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.3904', '颈部软组织病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.41', '肌腱切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4100x001', '肌腱切取术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4200x002', '腱膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4201', '肌腱切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4202', '腱鞘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.43', '肌或筋膜切除术用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4301', '肌肉切取用做移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4302', '筋膜切取用做移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4400x001', '筋膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4400x003', '足筋膜切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4500x001', '肌肉切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.4501', '肌肉清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.49', '软组织的其他切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.5x00', '黏液囊切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.61', '腱鞘缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6201', '肌腱延迟缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6301', '冈上肌修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.64', '腱的其他缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x007', '前臂肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x008', '上肢肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x009', '腕部肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x011', '下肢肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x013', '趾肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6400x015', '(足母)长伸肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6401', '肌腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6402', '跟腱缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6403', '腱膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.65', '肌肉或筋膜的其他缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x002', '肱二头肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x003', '肱三头肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x005', '股二头肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x006', '股四头肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x011', '胫前肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x012', '前臂肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x013', '三角肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x015', '臀部肌缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x016', '下肢肌肉缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6500x018', '上肢肌肉缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6501', '肌肉缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.6502', '筋膜缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.7501', '肌腱转移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8500x002', '跟腱缩短术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8500x003', '跟腱延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8500x008', '伸趾肌腱延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8500x009', '足屈肌腱延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8500x010', '足伸肌腱延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8501', '肌腱紧缩术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8502', '肌腱延长术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8701', '肌肉修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8800x001', '跟腱修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8800x016', '胫前肌腱修补术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.8801', '肌腱固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9100x007', '臀肌粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9100x008', '下肢肌腱粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9101', '肌腱粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9102', '肌肉粘连松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9103', '臀筋膜挛缩松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.9104', '筋膜松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('83.99', '肌、腱、筋膜和黏液囊的其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84', '上肢截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.01', '手指截断术和手指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0100x001', '多指截指术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0100x002', '手指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0100x004', '手指离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0101', '指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0102', '手指截断术,拇指除外', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0103', '掌指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.02', '拇指截断术和拇指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0201', '拇指截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0202', '拇指关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.03', '经手截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0301', '手截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0302', '掌截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.04', '腕关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.05', '经前臂截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.06', '肘关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.07', '经肱骨截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.0701', '上臂截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.08', '肩关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1', '下肢截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.11', '趾截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1101', '趾关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1102', '多趾截除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1103', '跖骨头截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.12', '经足截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.13', '踝关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.14', '经胫骨和腓骨踝部的踝截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.15', '膝关节下的其他截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1500x002', '经胫骨和腓骨的小腿离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1501', '小腿截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.16', '膝关节离断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.17', '膝上截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.1701', '大腿截断术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.3x00', '截断残端的修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.51', '椎体脊椎融合装置的置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5100x002', '碳纤维脊椎融合物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5100x003', '陶瓷脊椎融合物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5100x004', '金属脊椎融合物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5100x005', '塑胶脊椎融合物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5100x006', '钛合金脊椎融合物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.55', '骨空隙填补物置入', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5500x003', '丙烯酸水泥骨空隙填充', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5500x004', '钙质骨空隙填充', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5500x005', '聚甲基丙烯酸甲酯骨空隙填充', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5501', '骨空隙骨水泥填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.56', '填充物(水泥)置入或置换', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5600x001', '水泥间隔物置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5601', '关节腔隙骨水泥填充术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.57', '去除填充物(水泥)', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('84.5700x001', '水泥间隔物取出术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.0x00', '乳房切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.0x00x002', '乳房切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.0x00x003', '乳房切开探查术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.0x01', '乳房皮肤切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.0x02', '乳腺导管切开引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.12', '开放性乳房活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.1200x001', '乳腺活检术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.19', '乳房其他诊断性操作', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2', '乳房组织切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2000x001', '乳房皮肤和皮下坏死组织切除清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.21', '乳房病损局部切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x003', '乳房病损切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x004', '乳房病损微创旋切术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x019', '乳房腺体区段切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x020', '腔镜下乳房病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x021', '乳腺导管选择性切除术(单根)', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2100x022', '乳房病损消融术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.22', '乳房象限切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.23', '乳房次全切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2300x001', '乳腺局部扩大切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2301', '乳腺部分切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.24', '异位乳房组织切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2400X004', '副乳切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2400x005', '腔镜下单侧副乳切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2401', '副乳腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.2402', '副乳头切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.25', '乳头切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.31', '单侧缩小性乳房成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.32', '双侧缩小性乳房成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.33', '单侧皮下乳房切除术伴同时植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3300x001', '单侧乳房腺体切除伴假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.34', '其他单侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3400x002', '单侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3401', '保留乳头的单侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.35', '双侧皮下乳房切除术伴同时植入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3500x001', '双侧皮下乳房切除伴假体置入术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.36', '其他双侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3600x001', '双侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.3601', '保留乳头的双侧皮下乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.41', '单侧单纯乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4100x001', '单侧乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.42', '双侧单纯乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4200x001', '双侧乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4200x003', '腔镜下双侧乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.43', '单侧扩大的单纯乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4300x003', '单侧乳房切除伴同侧腋窝淋巴结活检术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4301', '单侧乳腺改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4302', '单侧保乳乳腺改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4303', '单侧单纯乳房切除术伴区域性淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.44', '双侧扩大的单纯乳房切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4401', '双侧乳腺改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4402', '双侧保乳乳腺改良根治术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4403', '双侧单纯乳房切除术伴区域性淋巴结切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.45', '单侧根治性乳房切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4500x001', '单侧乳房根治性切除伴同侧腋窝前哨淋巴结活检术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4500x003', '腔镜下单侧乳房根治性切除伴同侧腋窝前哨淋巴结活检术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.4501', '腔镜单侧乳腺根治性切术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.46', '双侧根治性乳房切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.47', '单侧扩大根治性乳房切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.48', '双侧扩大根治性乳房切除术', '四级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.5', '丰乳术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.6x00', '乳房固定术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.6x00x001', '乳房悬吊术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.7', '乳房全部再造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.7000x001', '乳房重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.81', '乳房裂伤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.82', '中厚皮片移植至乳房', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.83', '全层皮片移植至乳房', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.84', '带蒂皮瓣移植至乳房', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.85', '肌瓣移植至乳房', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.86', '乳头移位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8601', '乳头乳晕移位术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.87', '乳头其他修补术或重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8700X003', '乳头乳晕缩小术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8701', '乳头内陷矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8702', '乳头重建术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.89', '其他乳房成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8900x005', '乳晕再造术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8900x006', '乳房下垂矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8900x007', '乳房瘢痕松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8900x008', '乳房下皱襞成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.8901', '乳晕缩小术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.93', '乳房植入物修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.94', '去除乳房植入物', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.95', '乳房组织扩张器置入', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.96', '乳房组织扩张器去除', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('85.99', '乳房其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0100x002', '皮肤和皮下组织脓肿抽吸术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0100x003', '皮肤和皮下组织血肿抽吸术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0100x004', '甲下脓肿抽吸术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.04', '皮肤和皮下组织的其他切开术伴引流术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0400x011', '皮肤和皮下组织切开引流术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0401', '创面封闭式负压引流术(VSD)', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.05', '皮肤和皮下组织切开术伴异物或装置去除', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0500x007', '皮下引流装置取出术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0502', '皮肤和皮下组织异物切开取出术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.09', '皮肤和皮下组织的其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0900x002', '皮肤和皮下组织切开探查术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0901', '皮肤焦痂切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0902', '皮肤窦道切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.0903', '甲切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.11', '皮肤和皮下组织的活组织检查', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.19', '皮肤和皮下组织的其他诊断性操作', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.21', '藏毛囊肿或窦的切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2101', '藏毛囊肿切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2102', '藏毛窦切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.22', '伤口、感染或烧伤的切除性清创术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2200x011', '皮肤和皮下坏死组织切除清创术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2201', '皮肤伤口切除性清创术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2202', '焦痂切除术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2203', '中医化腐清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.23', '指(趾)甲、甲床或甲褶去除', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2300x001', '甲床去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2300x002', '甲根部分去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2300x003', '甲褶去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2301', '指(趾)甲去除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.25', '磨皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2601', '多余指切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2602', '多余趾切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.27', '指(趾)甲、指(趾)甲床或指(趾)甲褶清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.2701', '甲床清创术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x00', '皮肤和皮下组织的病损或组织其他局部切除术或破坏术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x01', '皮肤瘢痕切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x02', '皮肤病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x03', '皮下组织病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x04', '男性会阴病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x05', '腋嗅切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x06', '皮肤 Z 型成形伴病损切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x08', '汗腺病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x10x068', '指赘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x10x069', '趾赘切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x13', '颈部皮下组织病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3X14', '面部色素痣切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x15', '皮肤及皮下血管瘤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.3x16', '瘢痕单纯切除,Z 字改形修复术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.4x00', '皮肤病损根治性切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.4x01', '头.面.颈皮肤病损根治切除术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.4x02', '躯干皮肤病损根治性切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.4x03', '肢体皮肤病损根治切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.59', '其他部位的皮肤和皮下组织闭合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.5900x006', '皮肤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.5901', '伤口裂开缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.5902', '头皮缝合术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.5903', '男性会阴皮肤缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6', '游离皮肤移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.61', '手的全层皮肤移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6101', '手全厚皮片游离移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.62', '手的其他皮肤移植', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6200x002', '指皮肤游离移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6201', '手中厚皮片游离移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6202', '手刃厚皮片游离移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.63', '其他部位全层皮肤移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6300x001', '腹部全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6301', '头面颈全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6302', '躯干全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6303', '上肢全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6304', '下肢全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.64', '毛发移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6900x010', '全厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6901', '刃厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6902', '中厚皮片移植术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6903', '头面颈部植皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6904', '躯干部植皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6905', '上肢植皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.6906', '下肢植皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7', '带蒂皮瓣或皮瓣移植', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.700x0014', '皮瓣转移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7301', '邻指皮瓣术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7302', '鱼际皮瓣术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7303', '指蹼成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7400x033', '岛状皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7400x037', '腓骨肌皮瓣移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7400x040', '岛状皮瓣转移术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7500x011', '邻近皮瓣修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7501', '皮瓣清创术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7502', '皮瓣去脂术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7503', '皮瓣修整术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.7504', '复杂性游离皮瓣、皮瓣、肌皮瓣、超薄皮瓣修复术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8202', '中面部除皱术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.84', '皮肤瘢痕或蹼状挛缩松驰术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8401', '瘢痕切除缝合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8402', '皮肤蹼状挛缩松解术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8403', '皮肤 Z 型成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.85', '并指(趾)矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8501', '并指矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8502', '并趾矫正术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8600x001', '甲成形术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8701', '自体脂肪注射移植术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8900x011', '残端皮肤修整术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.8901', '皮肤 V-Y 缝合术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.9000X001', '抽脂术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.91', '皮肤切除用作移植物', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.9100x001', '供体皮肤切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.9100x002', '皮片取皮术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.9301', '皮肤扩张器技术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('86.99', '皮肤和皮下组织的其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('87.8300x001', '子宫-输卵管造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.42', '主动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4201', '主动脉弓造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4202', '胸主动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4203', '升主动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4204', '腹主动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4205', '降主动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.43', '肺动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.44', '其他胸内动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4401', '锁骨下动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4403', '支气管动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4404', '膈动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4405', '肋间动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.45', '肾动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.47', '其他腹内动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4701', '肝动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4702', '脾动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4703', '胃动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4704', '胰腺动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4705', '肠系膜上动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4706', '肠系膜下动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4707', '腹腔动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.48', '股和其他下肢动脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4800x005', '下肢动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4801', '股动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.49', '其他特指部位的动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4900x005', '全身动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4901', '上肢动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4902', '盆腔动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4903', '子宫动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.4904', '髂动脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.5101', '上腔静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.5102', '下腔静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.55', '单根导管的冠状动脉造影术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.56', '用两根导管的冠状动脉造影术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.57', '其他和未特指的冠状动脉造影术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.5701', '多根导管冠状动脉造影', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6103', '锁骨下静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.65', '用对比剂其他腹内静脉静脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6500x002', '腹内静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6500x005', '髂外静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.66', '用对比剂股和其他下肢静脉的静脉造', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6600x002', '下肢静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6601', '股静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6602', '其他下肢静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.67', '用对比剂其他特指部位的静脉造影术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6702', '上肢静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('88.6703', '髂静脉造影', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.2', '泪腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.21', '泪腺病损切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.22', '其他部分泪腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.23', '全部泪腺切除术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.4901', '泪道挂线术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.51', '泪点切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.52', '泪小管切开术', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.53', '泪囊切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.59', '泪道其他切开术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.71', '泪点外翻矫正术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.72', '泪点其他修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.7201', '泪点重建术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.73', '泪小管修补术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.7301', '泪小管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.81', '泪囊鼻腔吻合术[DCR]', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.8101', '内镜下鼻-泪管吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.82', '结膜泪囊鼻腔吻合术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.83', '结膜鼻腔吻合术伴置入管或支架', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.8301', '结膜-鼻腔吻合插管术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('9.99', '泪器系统其他手术', '二级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1000x006', '腹主动脉导管溶栓', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1000x009', '上肢动脉导管溶栓', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1000x010', '上肢静脉导管溶栓', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1000x011', '下腔静脉导管溶栓', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1001', '下肢动脉溶栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1002', '股动脉置管溶栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1003', '下肢静脉置管溶栓术', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1007', '肺动脉血栓溶解剂灌注', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.1600X003', 'A 型肉毒毒素美容注射', '一级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.2501', '动脉化疗栓塞', '三级', NULL) +GO + +INSERT INTO xk_xtwh_operation (icd_code, oper_name, oper_level, zjf) +VALUES ('99.2505', '化疗药物灌注', '二级', NULL) +GO + diff --git a/sql/ruoyi_lis8.0_sqlserver.sql b/sql/ruoyi_lis8.0_sqlserver.sql index ba15be1..5cbde7e 100644 --- a/sql/ruoyi_lis8.0_sqlserver.sql +++ b/sql/ruoyi_lis8.0_sqlserver.sql @@ -634,24 +634,10 @@ if not exists(select 1 from dbo.sys_menu where menu_id = '1060') end -if not exists(select 1 from dbo.sys_menu where menu_id = '2000') - begin - INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) - VALUES (2000, '住院采血', 0, 5, 'zycx', NULL, NULL, '', 1, 0, 'M', '0', '0', NULL, 'table', 'admin', '2025-05-08 17:31:10.647', '', NULL, '') - - end - -if not exists(select 1 from dbo.sys_menu where menu_id = '2001') - begin - INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) - VALUES (2001, '护士条码工作站', 2000, 1, 'barcode', NULL, NULL, '', 1, 0, 'C', '0', '0', NULL, 'tree-table', 'lis', '2025-05-08 17:38:53.69', '', NULL, '') - - end - if not exists(select 1 from dbo.sys_menu where menu_id = '2002') begin INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) - VALUES (2002, '字典管理(lis)', 1, 10, 'comdict', 'liswork/dict/index', NULL, '', 1, 0, 'C', '0', '0', 'liswork:dict:list', 'dict', 'admin', '2025-05-09 11:01:23.03', 'admin', '2025-05-09 17:38:19.337', '') + VALUES (2002, '字典管理(blood)', 1, 10, 'comdict', 'liswork/dict/index', NULL, '', 1, 0, 'C', '0', '0', 'liswork:dict:list', 'dict', 'admin', '2025-05-09 11:01:23.03', 'admin', '2025-05-09 17:38:19.337', '') end @@ -808,13 +794,13 @@ if not exists(select 1 from dbo.sys_dept where dept_id = '100' and parent_id = ' if not exists(select 1 from dbo.sys_dept where dept_id = '101' and parent_id = '100') begin INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) - VALUES (101, 100, '0,100', '检验科', 1, 'lis', '15888888888', null, '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + VALUES (101, 100, '0,100', '输血科', 1, 'lis', '15888888888', null, '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) end if not exists(select 1 from dbo.sys_dept where dept_id = '103' and parent_id = '101') begin INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) - VALUES (103, 101, '0,100,101', '临检组', 1, 'lis', '15888888888', null, '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + VALUES (103, 101, '0,100,101', '输血科', 1, 'lis', '15888888888', null, '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) end SET IDENTITY_INSERT dbo.sys_dept OFF; diff --git a/sql/updatedb_blood.sql b/sql/updatedb_blood.sql index affb1cf..d2403ed 100644 --- a/sql/updatedb_blood.sql +++ b/sql/updatedb_blood.sql @@ -289,6 +289,29 @@ if not exists(select 1 from dbo.xk_dmzd where wordbook_sign = 'BASE') ('sxqjcxmmrz','未查','未查','Y'), ('sxqjcxmmrz','已查未报','已查未报','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign)values('BASE','nldw','年龄单位','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign)values('nldw','岁','岁','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign)values('nldw','月','月','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign)values('nldw','天','天','Y') + + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('BASE','anemia','贫血程度','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('anemia','轻度贫血','轻度贫血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('anemia','中度贫血','中度贫血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('anemia','重度贫血','重度贫血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('anemia','极重度贫血','极重度贫血','Y') + + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('BASE','billApplyStatus','申请单状态','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','A','未审核','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','B','已审核','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','F','已复核血型','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','C','已配血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','D','已发血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','Z','已作废','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','BD','未补录','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','W','已补录','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','SF','已复核血型(追加)','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','S','已追加配血','Y') + insert into xk_dmzd (wordbook_sign,wordbook_code,wordbook_name,use_sign) values('billApplyStatus','N','审核未通过','Y') END @@ -303,4 +326,17 @@ IF NOT EXISTS (SELECT 1 FROM sys.key_constraints WHERE name = 'PK_xk_patient_inf BEGIN ALTER TABLE xk_patient_info ADD CONSTRAINT PK_xk_patient_info PRIMARY KEY CLUSTERED (beinhos_id); END +GO + +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'xk_transfuse_apply_before' AND COLUMN_NAME = 'bill_status') + begin + alter table xk_transfuse_apply_before add bill_status varchar(10) + end +go + + +IF NOT EXISTS (SELECT 1 FROM sys.key_constraints WHERE name = 'PK_xk_hos_info' AND type = 'PK' ) + BEGIN + ALTER TABLE xk_hos_info ADD CONSTRAINT PK_xk_hos_info PRIMARY KEY CLUSTERED (hospital_code); + END GO \ No newline at end of file