切换分支备份
							parent
							
								
									7e021afe6e
								
							
						
					
					
						commit
						d96d75634f
					
				| @ -0,0 +1,9 @@ | |||||||
|  | package com.glxp.api.dao.basic; | ||||||
|  | 
 | ||||||
|  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | ||||||
|  | import com.glxp.api.entity.basic.BasicSkPrescribeItemCode; | ||||||
|  | import org.apache.ibatis.annotations.Mapper; | ||||||
|  | 
 | ||||||
|  | @Mapper | ||||||
|  | public interface BasicSkPrescribeItemCodeMapper extends BaseMapper<BasicSkPrescribeItemCode> { | ||||||
|  | } | ||||||
| @ -0,0 +1,109 @@ | |||||||
|  | package com.glxp.api.entity.basic; | ||||||
|  | 
 | ||||||
|  | import com.baomidou.mybatisplus.annotation.IdType; | ||||||
|  | import com.baomidou.mybatisplus.annotation.TableField; | ||||||
|  | import com.baomidou.mybatisplus.annotation.TableId; | ||||||
|  | import com.baomidou.mybatisplus.annotation.TableName; | ||||||
|  | import io.swagger.annotations.ApiModel; | ||||||
|  | import io.swagger.annotations.ApiModelProperty; | ||||||
|  | import java.io.Serializable; | ||||||
|  | import java.util.Date; | ||||||
|  | import lombok.Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |     * 处方手动赋码表 | ||||||
|  |     */ | ||||||
|  | @ApiModel(value="com-glxp-api-entity-basic-BasicSkPrescribeItemCode") | ||||||
|  | @Data | ||||||
|  | @TableName(value = "basic_sk_prescribe_item_code") | ||||||
|  | public class BasicSkPrescribeItemCode implements Serializable { | ||||||
|  |     @TableId(value = "id", type = IdType.INPUT) | ||||||
|  |     @ApiModelProperty(value="") | ||||||
|  |     private Integer id; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 绑定UDI码 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "udiCode") | ||||||
|  |     @ApiModelProperty(value="绑定UDI码") | ||||||
|  |     private String udiCode; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 收费项目编码 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "itemCode") | ||||||
|  |     @ApiModelProperty(value="收费项目编码") | ||||||
|  |     private String itemCode; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 收费项目名称 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "itemName") | ||||||
|  |     @ApiModelProperty(value="收费项目名称") | ||||||
|  |     private String itemName; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 物资字典ID | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "relId") | ||||||
|  |     @ApiModelProperty(value="物资字典ID") | ||||||
|  |     private Long relId; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 最小销售产品标识 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "nameCode") | ||||||
|  |     @ApiModelProperty(value="最小销售产品标识") | ||||||
|  |     private String nameCode; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 患者编码 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "sickerCode") | ||||||
|  |     @ApiModelProperty(value="患者编码") | ||||||
|  |     private String sickerCode; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 处方编码 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "prescribeCode") | ||||||
|  |     @ApiModelProperty(value="处方编码") | ||||||
|  |     private String prescribeCode; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 备注 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "remark") | ||||||
|  |     @ApiModelProperty(value="备注") | ||||||
|  |     private String remark; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 创建时间 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "createTime") | ||||||
|  |     @ApiModelProperty(value="创建时间") | ||||||
|  |     private Date createTime; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 创建人 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "`createUser`") | ||||||
|  |     @ApiModelProperty(value="创建人") | ||||||
|  |     private String createUser; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 更新时间 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "updateTime") | ||||||
|  |     @ApiModelProperty(value="更新时间") | ||||||
|  |     private Date updateTime; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 更新人 | ||||||
|  |      */ | ||||||
|  |     @TableField(value = "updateUser") | ||||||
|  |     @ApiModelProperty(value="更新人") | ||||||
|  |     private String updateUser; | ||||||
|  | 
 | ||||||
|  |     private static final long serialVersionUID = 1L; | ||||||
|  | } | ||||||
| @ -0,0 +1,12 @@ | |||||||
|  | package com.glxp.api.service.basic; | ||||||
|  | 
 | ||||||
|  | import org.springframework.stereotype.Service; | ||||||
|  | import javax.annotation.Resource; | ||||||
|  | import java.util.List; | ||||||
|  | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | ||||||
|  | import com.glxp.api.entity.basic.BasicSkPrescribeItemCode; | ||||||
|  | import com.glxp.api.dao.basic.BasicSkPrescribeItemCodeMapper; | ||||||
|  | @Service | ||||||
|  | public class BasicSkPrescribeItemCodeService extends ServiceImpl<BasicSkPrescribeItemCodeMapper, BasicSkPrescribeItemCode> { | ||||||
|  | 
 | ||||||
|  | } | ||||||
| @ -0,0 +1,4 @@ | |||||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|  | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||||
|  | <mapper namespace="com.glxp.api.dao.basic.BasicSkPrescribeItemCodeMapper"> | ||||||
|  | </mapper> | ||||||
					Loading…
					
					
				
		Reference in New Issue