This commit is contained in:
shuo.wang
2025-04-06 18:34:06 +08:00
parent 5e1a69a03b
commit c451901924
38 changed files with 1264 additions and 82 deletions

View File

@@ -0,0 +1,41 @@
<?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">
<!--mybatis-3-mapper.dtd:约束文件的名称限制和检查在当前文件中出现的标签和属性符合mybatis的要求-->
<!--namespace命名空间要有唯一的值要求使用dao接口的权限定名称一个dao接口对应一个mappernamespace指明对应哪个dao接口-->
<mapper namespace="com.cool.store.mapper.OrderSysInfoMapper">
<resultMap id="BaseResultMap" type="com.cool.store.entity.OrderSysInfoDO">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="shopId" column="shop_id" jdbcType="BIGINT"/>
<result property="xgjVicePresident" column="xgj_vice_president" jdbcType="VARCHAR"/>
<result property="xgjRegionId" column="xgj_region_id" jdbcType="VARCHAR"/>
<result property="addresseeName" column="addressee_name" jdbcType="VARCHAR"/>
<result property="addresseeMobile" column="addressee_mobile" jdbcType="VARCHAR"/>
<result property="addresseeProvince" column="addressee_province" jdbcType="VARCHAR"/>
<result property="addresseeCity" column="addressee_city" jdbcType="VARCHAR"/>
<result property="addresseeDistrict" column="addressee_district" jdbcType="VARCHAR"/>
<result property="addresseeAddress" column="addressee_address" jdbcType="VARCHAR"/>
<result property="declareGoodsLogisticsWarehouse" column="declare_goods_logistics_warehouse"
jdbcType="VARCHAR"/>
<result property="declareGoodsDate" column="declare_goods_date" jdbcType="VARCHAR"/>
<result property="warehouseDeliveryDate" column="warehouse_delivery_date" jdbcType="VARCHAR"/>
<result property="orderCreateTime" column="order_create_time" jdbcType="TIMESTAMP"/>
<result property="orderUpdateTime" column="order_update_time" jdbcType="TIMESTAMP"/>
<result property="orderCreateUser" column="order_create_user" jdbcType="VARCHAR"/>
<result property="orderUpdateUser" column="order_update_user" jdbcType="VARCHAR"/>
<result property="receivingFirmName" column="receiving_firm_name" jdbcType="VARCHAR"/>
<result property="receivingMsBankAccount" column="receiving_ms_bank_account" jdbcType="VARCHAR"/>
<result property="receivingMsBankBranch" column="receiving_ms_bank_branch" jdbcType="VARCHAR"/>
<result property="bankUnionPayAccount" column="bank_unionPay_account" jdbcType="VARCHAR"/>
<result property="receivingCreateTime" column="receiving_create_time" jdbcType="TIMESTAMP"/>
<result property="receivingUpdateTime" column="receiving_update_time" jdbcType="TIMESTAMP"/>
<result property="receivingCreateUser" column="receiving_create_user" jdbcType="VARCHAR"/>
<result property="receivingUpdateUser" column="receiving_update_user" jdbcType="VARCHAR"/>
</resultMap>
<sql id="base_colum_list">
id, shop_id, xgj_vice_president, xgj_region_id,addresseeName, addressee_mobile, addressee_province, addressee_city,
addressee_district, addressee_address, declare_goods_logistics_warehouse, declare_goods_date,
warehouse_delivery_date, order_create_time, order_update_time, order_create_user, order_update_user,
receiving_firm_name, receiving_ms_bank_account, receiving_ms_bank_branch, bank_unionPay_account,
receiving_create_time, receiving_update_time, receiving_create_user, receiving_update_user
</sql>
</mapper>