长泰区医院库存出库明细
parent
c93c0bc195
commit
b50097f3e2
File diff suppressed because one or more lines are too long
@ -1,14 +1,41 @@
|
|||||||
package com.glxp.mipsdl.client.ctqyy.entity;
|
package com.glxp.mipsdl.client.ctqyy.entity;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 高值耗材出入库明细
|
* 高值耗材出入库明细
|
||||||
*/
|
*/
|
||||||
|
@NoArgsConstructor
|
||||||
@Data
|
@Data
|
||||||
public class InvCodeResultEntity {
|
public class InvCodeResultEntity {
|
||||||
|
|
||||||
|
|
||||||
|
@JsonProperty("recordNo")
|
||||||
|
private Integer recordNo;
|
||||||
|
@JsonProperty("visitNo")
|
||||||
|
private String visitNo;
|
||||||
|
@JsonProperty("sickName")
|
||||||
|
private String sickName;
|
||||||
|
@JsonProperty("inDept")
|
||||||
|
private String inDept;
|
||||||
|
@JsonProperty("deptName")
|
||||||
|
private String deptName;
|
||||||
|
@JsonProperty("materialCode")
|
||||||
|
private String materialCode;
|
||||||
|
@JsonProperty("materialName")
|
||||||
|
private String materialName;
|
||||||
|
@JsonProperty("materialPrc")
|
||||||
|
private Integer materialPrc;
|
||||||
|
@JsonProperty("dictBarcode")
|
||||||
|
private String dictBarcode;
|
||||||
|
@JsonProperty("Barcode")
|
||||||
|
private String barcode;
|
||||||
|
@JsonProperty("feeTime")
|
||||||
|
private String feeTime;
|
||||||
|
@JsonProperty("feeOper")
|
||||||
|
private String feeOper;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.mipsdl.dao.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.mipsdl.entity.basic.BasicSkProjectDetailEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface BasicDestinyRelMapper extends BaseMapper<BasicSkProjectDetailEntity> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.mipsdl.dao.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.mipsdl.entity.basic.BasicSkProjectEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface BasicSkProjectMapper extends BaseMapper<BasicSkProjectEntity> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
package com.glxp.mipsdl.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 lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 定数包产品关联表
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@TableName(value = "basic_sk_project_detail")
|
||||||
|
public class BasicSkProjectDetailEntity {
|
||||||
|
@TableId(value = "id", type = IdType.INPUT)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 耗材产品id
|
||||||
|
*/
|
||||||
|
@TableField(value = "relId")
|
||||||
|
private Long relId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 定数包模板id
|
||||||
|
*/
|
||||||
|
@TableField(value = "pId")
|
||||||
|
private Long pId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数量
|
||||||
|
*/
|
||||||
|
@TableField(value = "`count`")
|
||||||
|
private Integer count;
|
||||||
|
|
||||||
|
@TableField(value = "`thrName`")
|
||||||
|
private String thrName;
|
||||||
|
@TableField(value = "`thrCode`")
|
||||||
|
private String thrCode;
|
||||||
|
@TableField(value = "`measureCount`")
|
||||||
|
private String measureCount;
|
||||||
|
@TableField(value = "`measureUnit`")
|
||||||
|
private String measureUnit;
|
||||||
|
@TableField(value = "`category`")
|
||||||
|
private String category;
|
||||||
|
@TableField(value = "`frequency`")
|
||||||
|
private String frequency;
|
||||||
|
@TableField(value = "`price`")
|
||||||
|
private String price;
|
||||||
|
@TableField(value = "`ggxh`")
|
||||||
|
private String ggxh;
|
||||||
|
@TableField(value = "`remark`")
|
||||||
|
private String remark;
|
||||||
|
@TableField(value = "`createTime`")
|
||||||
|
private String createTime;
|
||||||
|
@TableField(value = "`createUser`")
|
||||||
|
private String createUser;
|
||||||
|
@TableField(value = "`updateTime`")
|
||||||
|
private String updateTime;
|
||||||
|
@TableField(value = "`updateUser`")
|
||||||
|
private String updateUser;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
<?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.mipsdl.dao.basic.BasicDestinyRelMapper">
|
||||||
|
<resultMap id="BaseResultMap" type="com.glxp.mipsdl.entity.basic.BasicSkProjectDetailEntity">
|
||||||
|
</resultMap>
|
||||||
|
</mapper>
|
@ -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.mipsdl.dao.basic.BasicSkProjectMapper">
|
||||||
|
</mapper>
|
Loading…
Reference in New Issue