1.添加inv_inner_order_pdf_temp表对应实体类文件
							parent
							
								
									0f8f25687a
								
							
						
					
					
						commit
						ee41bab71a
					
				| @ -0,0 +1,7 @@ | ||||
| package com.glxp.api.dao.inv; | ||||
| 
 | ||||
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | ||||
| import com.glxp.api.entity.inv.InvInnerOrderPdfTempEntity; | ||||
| 
 | ||||
| public interface InvInnerOrderPdfTempDao extends BaseMapper<InvInnerOrderPdfTempEntity> { | ||||
| } | ||||
| @ -0,0 +1,47 @@ | ||||
| package com.glxp.api.entity.inv; | ||||
| 
 | ||||
| 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 = "inv_inner_order_pdf_temp") | ||||
| public class InvInnerOrderPdfTempEntity { | ||||
| 
 | ||||
|     @TableId(value = "id", type = IdType.AUTO) | ||||
|     private Integer id; | ||||
| 
 | ||||
|     @TableField(value = "genkey") | ||||
|     private String genkey; | ||||
| 
 | ||||
|     @TableField(value = "fileName") | ||||
|     private String fileName; | ||||
| 
 | ||||
|     @TableField(value = "filePath") | ||||
|     private String filePath; | ||||
| 
 | ||||
|     @TableField(value = "`status`") | ||||
|     private String status; | ||||
| 
 | ||||
|     @TableField(value = "printCodeIdFk") | ||||
|     private String printCodeIdFk; | ||||
| 
 | ||||
|     @TableField(value = "stockOrderFk") | ||||
|     private String stockOrderFk; | ||||
| 
 | ||||
|     public static final String COL_ID = "id"; | ||||
| 
 | ||||
|     public static final String COL_GENKEY = "genkey"; | ||||
| 
 | ||||
|     public static final String COL_FILENAME = "fileName"; | ||||
| 
 | ||||
|     public static final String COL_FILEPATH = "filePath"; | ||||
| 
 | ||||
|     public static final String COL_STATUS = "status"; | ||||
| 
 | ||||
|     public static final String COL_PRINTCODEIDFK = "printCodeIdFk"; | ||||
| 
 | ||||
|     public static final String COL_STOCKORDERFK = "stockOrderFk"; | ||||
| } | ||||
| @ -0,0 +1,19 @@ | ||||
| <?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.inv.InvInnerOrderPdfTempDao"> | ||||
|   <resultMap id="BaseResultMap" type="com.glxp.api.entity.inv.InvInnerOrderPdfTempEntity"> | ||||
|     <!--@mbg.generated--> | ||||
|     <!--@Table inv_inner_order_pdf_temp--> | ||||
|     <id column="id" jdbcType="INTEGER" property="id" /> | ||||
|     <result column="genkey" jdbcType="VARCHAR" property="genkey" /> | ||||
|     <result column="fileName" jdbcType="VARCHAR" property="fileName" /> | ||||
|     <result column="filePath" jdbcType="VARCHAR" property="filePath" /> | ||||
|     <result column="status" jdbcType="VARCHAR" property="status" /> | ||||
|     <result column="printCodeIdFk" jdbcType="VARCHAR" property="printCodeIdFk" /> | ||||
|     <result column="stockOrderFk" jdbcType="VARCHAR" property="stockOrderFk" /> | ||||
|   </resultMap> | ||||
|   <sql id="Base_Column_List"> | ||||
|     <!--@mbg.generated--> | ||||
|     id, genkey, fileName, filePath, `status`, printCodeIdFk, stockOrderFk | ||||
|   </sql> | ||||
| </mapper> | ||||
					Loading…
					
					
				
		Reference in New Issue