|
@@ -0,0 +1,57 @@
|
|
|
+<?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.gyee.viewticket.mapper.ticket.CompaniesMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.gyee.viewticket.model.ticket.Companies">
|
|
|
+ <id column="ID" property="id" />
|
|
|
+ <result column="COMPANY" property="company" />
|
|
|
+ <result column="PARENT" property="parent" />
|
|
|
+ <result column="TYPE" property="type" />
|
|
|
+ <result column="REGFUND" property="regfund" />
|
|
|
+ <result column="COMPTYPE" property="comptype" />
|
|
|
+ <result column="DELEGATE" property="delegate" />
|
|
|
+ <result column="REGNUM" property="regnum" />
|
|
|
+ <result column="TAXNUM" property="taxnum" />
|
|
|
+ <result column="MAINPROD" property="mainprod" />
|
|
|
+ <result column="DEALIN" property="dealin" />
|
|
|
+ <result column="ADDRESS" property="address" />
|
|
|
+ <result column="POSTNUM" property="postnum" />
|
|
|
+ <result column="PROVINCE" property="province" />
|
|
|
+ <result column="CITY" property="city" />
|
|
|
+ <result column="CONTACT" property="contact" />
|
|
|
+ <result column="PHONE" property="phone" />
|
|
|
+ <result column="FAX" property="fax" />
|
|
|
+ <result column="CONTACTMP" property="contactmp" />
|
|
|
+ <result column="CONTACTMAIL" property="contactmail" />
|
|
|
+ <result column="FOB" property="fob" />
|
|
|
+ <result column="FREIGHTTERMS" property="freightterms" />
|
|
|
+ <result column="SHIPVIA" property="shipvia" />
|
|
|
+ <result column="PAYMENTTERMS" property="paymentterms" />
|
|
|
+ <result column="EBSNUM" property="ebsnum" />
|
|
|
+ <result column="EBSISSYNC" property="ebsissync" />
|
|
|
+ <result column="CHANGEBY" property="changeby" />
|
|
|
+ <result column="CHANGEDATE" property="changedate" />
|
|
|
+ <result column="PAYVENDOR" property="payvendor" />
|
|
|
+ <result column="BANKNAME" property="bankname" />
|
|
|
+ <result column="BANKACCOUNT" property="bankaccount" />
|
|
|
+ <result column="DISABLED" property="disabled" />
|
|
|
+ <result column="REMITADDR" property="remitaddr" />
|
|
|
+ <result column="REMITPOSTNUM" property="remitpostnum" />
|
|
|
+ <result column="REMITPHONE" property="remitphone" />
|
|
|
+ <result column="REMITTO" property="remitto" />
|
|
|
+ <result column="HOMEPAGE" property="homepage" />
|
|
|
+ <result column="DEFWAREHOUSE" property="defwarehouse" />
|
|
|
+ <result column="DESCRIPTION" property="description" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ ID, COMPANY, PARENT, TYPE, REGFUND, COMPTYPE, DELEGATE, REGNUM, TAXNUM, MAINPROD, DEALIN, ADDRESS, POSTNUM, PROVINCE, CITY, CONTACT, PHONE, FAX, CONTACTMP, CONTACTMAIL, FOB, FREIGHTTERMS, SHIPVIA, PAYMENTTERMS, EBSNUM, EBSISSYNC, CHANGEBY, CHANGEDATE, PAYVENDOR, BANKNAME, BANKACCOUNT, DISABLED, REMITADDR, REMITPOSTNUM, REMITPHONE, REMITTO, HOMEPAGE, DEFWAREHOUSE, DESCRIPTION
|
|
|
+ </sql>
|
|
|
+ <select id="selectCompaniesList" resultType="java.util.Map">
|
|
|
+
|
|
|
+ select id,company from companies where type = '供应商'
|
|
|
+ </select>
|
|
|
+
|
|
|
+</mapper>
|