Blame view

src/main/resources/mybatis/config/CompanyMapper.xml 6.23 KB
mahuandong authored
1
<?xml version="1.0" encoding="UTF-8"?>
tangying authored
2
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3
4
<mapper namespace="com.huaheng.pc.config.company.mapper.CompanyMapper">
  <resultMap id="BaseResultMap" type="com.huaheng.pc.config.company.domain.Company">
mahuandong authored
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
    <!--@mbg.generated-->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="code" jdbcType="VARCHAR" property="code" />
    <result column="warehouseCode" jdbcType="VARCHAR" property="warehouseCode" />
    <result column="name" jdbcType="VARCHAR" property="name" />
    <result column="attentionTo" jdbcType="VARCHAR" property="attentionTo" />
    <result column="address1" jdbcType="VARCHAR" property="address1" />
    <result column="address2" jdbcType="VARCHAR" property="address2" />
    <result column="district" jdbcType="VARCHAR" property="district" />
    <result column="city" jdbcType="VARCHAR" property="city" />
    <result column="province" jdbcType="VARCHAR" property="province" />
    <result column="country" jdbcType="VARCHAR" property="country" />
    <result column="postalCode" jdbcType="VARCHAR" property="postalCode" />
    <result column="phoneNum" jdbcType="VARCHAR" property="phoneNum" />
    <result column="mobile" jdbcType="VARCHAR" property="mobile" />
    <result column="email" jdbcType="VARCHAR" property="email" />
    <result column="shipmentPrefix" jdbcType="VARCHAR" property="shipmentPrefix" />
    <result column="receiptPrefix" jdbcType="VARCHAR" property="receiptPrefix" />
    <result column="nameEn" jdbcType="VARCHAR" property="nameEn" />
    <result column="printDocAtChecked" jdbcType="INTEGER" property="printDocAtChecked" />
    <result column="hostInterfaceType" jdbcType="VARCHAR" property="hostInterfaceType" />
    <result column="created" jdbcType="TIMESTAMP" property="created" />
    <result column="createdBy" jdbcType="VARCHAR" property="createdBy" />
    <result column="lastUpdated" jdbcType="TIMESTAMP" property="lastUpdated" />
    <result column="lastUpdatedBy" jdbcType="VARCHAR" property="lastUpdatedBy" />
    <result column="version" jdbcType="INTEGER" property="version" />
    <result column="userDef1" jdbcType="VARCHAR" property="userDef1" />
    <result column="userDef2" jdbcType="VARCHAR" property="userDef2" />
    <result column="userDef3" jdbcType="VARCHAR" property="userDef3" />
    <result column="userDef4" jdbcType="VARCHAR" property="userDef4" />
    <result column="userDef5" jdbcType="VARCHAR" property="userDef5" />
    <result column="userDef6" jdbcType="VARCHAR" property="userDef6" />
    <result column="userDef7" jdbcType="VARCHAR" property="userDef7" />
    <result column="userDef8" jdbcType="VARCHAR" property="userDef8" />
    <result column="processStamp" jdbcType="VARCHAR" property="processStamp" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--@mbg.generated-->
    id, code, warehouseCode, `name`, attentionTo, address1, address2, district, city, 
    province, country, postalCode, phoneNum, mobile, email, shipmentPrefix, receiptPrefix, 
    nameEn, printDocAtChecked, hostInterfaceType, created, createdBy, lastUpdated, lastUpdatedBy, 
    version, userDef1, userDef2, userDef3, userDef4, userDef5, userDef6, userDef7, userDef8, 
    processStamp
  </sql>
xqs authored
50
51
52
53
54
55
56
57
  <select id="loginGetCompany" resultType="com.huaheng.pc.config.company.domain.Company">
		SELECT c.id, c.name, c.code
		FROM sys_user_company suc
		INNER JOIN company c ON  suc.companyId = c.id AND suc.userId = #{userId}
		INNER JOIN warehouse_company wc ON wc.companyId=c.id AND wc.warehouseCode = #{warehouseCode}
  </select>
58
  <select id="selectCompanyByUserId" resultType="com.huaheng.pc.config.company.domain.Company">
tangying authored
59
60
61
		SELECT c.id, c.name, c.code
		FROM sys_user_company suc
		INNER JOIN company c ON  suc.companyId = c.id AND suc.userId = #{userId}
62
		INNER JOIN warehouse_company wc ON wc.companyId=c.id AND wc.warehouseCode = #{warehouseCode}
mahuandong authored
63
  </select>
64
65
66
67
68

    <select id="selectByWarehouseCode" resultType="com.huaheng.pc.config.company.domain.Company">
        select c.id , c.code, c.name, c.warehouseCode, c.deleted
        from company c
        INNER JOIN warehouse_company wc ON c.id = wc.companyId
69
        where c.warehouseCode = #{warehouseCode}
mahuandong authored
70
  </select>
tangying authored
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
  <select id="selectListEntityByEqual" resultType="com.huaheng.pc.config.company.domain.Company">
    SELECT id, code, warehouseCode, `name`, attentionTo, address1, address2, district, city,
    province, country, postalCode, phoneNum, mobile, email, created, createdBy, lastUpdated, lastUpdatedBy,
    version, userDef1, userDef2, userDef3, processStamp
    FROM company
    <where>
      <if test="id != null">
        AND id = #{id}
      </if>
      <if test="code != null">
        AND code = #{code}
      </if>
      <if test="name != null">
        AND name = #{name}
      </if>
      <if test="address1 != null">
        AND address1 = #{address1}
      </if>
      <if test="address2 != null">
        AND address2 = #{address2}
      </if>
      <if test="city != null">
        AND city = #{city}
      </if>
      <if test="province != null">
        AND province = #{province}
      </if>
      <if test="country != null">
        AND country = #{country}
      </if>
      <if test="postalCode != null">
        AND postalCode = #{postalCode}
      </if>
      <if test="attentionTo != null">
        AND attentionTo = #{attentionTo}
      </if>
      <if test="phoneNum != null">
        AND phoneNum = #{phoneNum}
      </if>
      <if test="mobile != null">
        AND mobile = #{mobile}
      </if>
      <if test="email != null">
        AND email = #{email}
      </if>
      <if test="created != null">
        AND created = #{created}
      </if>
      <if test="createdBy != null">
        AND createdBy = #{createdBy}
      </if>
      <if test="lastUpdated != null">
        AND lastUpdated = #{lastUpdated}
      </if>
      <if test="lastUpdatedBy != null">
        AND lastUpdatedBy = #{lastUpdatedBy}
      </if>
      <if test="deleted != null">
        AND deleted = #{deleted}
      </if>
      <if test="userDef1 != null">
        AND userDef1 = #{userDef1}
      </if>
      <if test="userDef2 != null">
        AND userDef2 = #{userDef2}
      </if>
      <if test="userDef3 != null">
        AND userDef3 = #{userDef3}
      </if>
    </where>
  </select>
mahuandong authored
144
</mapper>