first commit

This commit is contained in:
yy
2026-09-11 17:34:14 +08:00
commit dfb943919d
622 changed files with 26659 additions and 0 deletions
@@ -0,0 +1,32 @@
<?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.metalloop.modules.bussiness.mapper.BizVarietyMapper">
<resultMap id="BaseResultMap" type="com.metalloop.modules.bussiness.model.po.BizVariety">
<!--@mbg.generated-->
<!--@Table biz_variety-->
<id column="id" jdbcType="BIGINT" property="id"/>
<result column="variety_name" jdbcType="VARCHAR" property="varietyName"/>
<result column="variety_grade" jdbcType="VARCHAR" property="varietyGrade"/>
<result column="parent_id" jdbcType="BIGINT" property="parentId"/>
<result column="variety_material" jdbcType="VARCHAR" property="varietyMaterial"/>
<result column="description" jdbcType="VARCHAR" property="description"/>
<result column="sort" jdbcType="INTEGER" property="sort"/>
<result column="status" jdbcType="TINYINT" property="status"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
<!--@Table biz_variety-->
id,
variety_name,
variety_grade,
parent_id,
variety_material,
description,
sort,
status,
create_time,
update_time
</sql>
</mapper>