中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 5cc82f45d73865489cc39e5ffbf521bf4279ec53
1
2
3
4
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?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.odcc.cpzidc.bis.mapper.IdcUseInfrastructureMapper">
    
    <resultMap type="IdcUseInfrastructure" id="IdcUseInfrastructureResult">
        <result property="id"    column="id"    />
        <result property="baseId"    column="base_id"    />
        <result property="dateNode"    column="date_node"    />
        <result property="formName"    column="form_name"    />
        <result property="formTel"    column="form_tel"    />
        <result property="frameCompBase"    column="frame_comp_base"    />
        <result property="frameCompEnd"    column="frame_comp_end"    />
        <result property="frameElectricity"    column="frame_electricity"    />
        <result property="percentageCloud"    column="percentage_cloud"    />
        <result property="electricityPrice"    column="electricity_price"    />
        <result property="annual"    column="annual"    />
        <result property="cost"    column="cost"    />
        <result property="bisPercentZhengwu"    column="bis_percent_zhengwu"    />
        <result property="bisPercentQiye"    column="bis_percent_qiye"    />
        <result property="bisPercentJinrong"    column="bis_percent_jinrong"    />
        <result property="bisPercentInternetGongyouyun"    column="bis_percent_internet_gongyouyun"    />
        <result property="bisPercentInternetWangzhan"    column="bis_percent_internet_wangzhan"    />
        <result property="bisPercentInternetShiping"    column="bis_percent_internet_shiping"    />
        <result property="bisPercentInternetAi"    column="bis_percent_internet_ai"    />
        <result property="bisPercentInternetDianshang"    column="bis_percent_internet_dianshang"    />
        <result property="bisPercentInternetYouxi"    column="bis_percent_internet_youxi"    />
        <result property="bisPercentInternetZhifu"    column="bis_percent_internet_zhifu"    />
        <result property="bisPercentInternetOther"    column="bis_percent_internet_other"    />
        <result property="bisPercentOther"    column="bis_percent_other"    />
        <result property="sumChanquan"    column="sum_chanquan"    />
        <result property="itOperation"    column="it_operation"    />
        <result property="sort"    column="sort_"    />
        <result property="createTime"    column="create_time"    />
        <result property="updateTime"    column="update_time"    />
        <result property="createUser"    column="create_user"    />
        <result property="updateUser"    column="update_user"    />
        <result property="remark"    column="remark"    />
    </resultMap>
 
    <sql id="selectIdcUseInfrastructureVo">
        select id, base_id, date_node, form_name, form_tel, frame_comp_base, frame_comp_end, frame_electricity, percentage_cloud, electricity_price, annual, cost, bis_percent_zhengwu, bis_percent_qiye, bis_percent_jinrong, bis_percent_internet_gongyouyun, bis_percent_internet_wangzhan, bis_percent_internet_shiping, bis_percent_internet_ai, bis_percent_internet_dianshang, bis_percent_internet_youxi, bis_percent_internet_zhifu, bis_percent_internet_other, bis_percent_other, sum_chanquan, it_operation, sort_, create_time, update_time, create_user, update_user, remark from idc_use_infrastructure
    </sql>
 
    <select id="selectIdcUseInfrastructureList" parameterType="IdcUseInfrastructure" resultMap="IdcUseInfrastructureResult">
        <include refid="selectIdcUseInfrastructureVo"/>
        <where>  
            <if test="baseId != null "> and base_id = #{baseId}</if>
            <if test="dateNode != null  and dateNode != ''"> and date_node = #{dateNode}</if>
            <if test="formName != null  and formName != ''"> and form_name like concat('%', #{formName}, '%')</if>
            <if test="formTel != null  and formTel != ''"> and form_tel = #{formTel}</if>
            <if test="frameCompBase != null "> and frame_comp_base = #{frameCompBase}</if>
            <if test="frameCompEnd != null "> and frame_comp_end = #{frameCompEnd}</if>
            <if test="frameElectricity != null  and frameElectricity != ''"> and frame_electricity = #{frameElectricity}</if>
            <if test="percentageCloud != null  and percentageCloud != ''"> and percentage_cloud = #{percentageCloud}</if>
            <if test="electricityPrice != null "> and electricity_price = #{electricityPrice}</if>
            <if test="annual != null  and annual != ''"> and annual = #{annual}</if>
            <if test="cost != null  and cost != ''"> and cost = #{cost}</if>
            <if test="bisPercentZhengwu != null  and bisPercentZhengwu != ''"> and bis_percent_zhengwu = #{bisPercentZhengwu}</if>
            <if test="bisPercentQiye != null  and bisPercentQiye != ''"> and bis_percent_qiye = #{bisPercentQiye}</if>
            <if test="bisPercentJinrong != null  and bisPercentJinrong != ''"> and bis_percent_jinrong = #{bisPercentJinrong}</if>
            <if test="bisPercentInternetGongyouyun != null  and bisPercentInternetGongyouyun != ''"> and bis_percent_internet_gongyouyun = #{bisPercentInternetGongyouyun}</if>
            <if test="bisPercentInternetWangzhan != null  and bisPercentInternetWangzhan != ''"> and bis_percent_internet_wangzhan = #{bisPercentInternetWangzhan}</if>
            <if test="bisPercentInternetShiping != null  and bisPercentInternetShiping != ''"> and bis_percent_internet_shiping = #{bisPercentInternetShiping}</if>
            <if test="bisPercentInternetAi != null  and bisPercentInternetAi != ''"> and bis_percent_internet_ai = #{bisPercentInternetAi}</if>
            <if test="bisPercentInternetDianshang != null  and bisPercentInternetDianshang != ''"> and bis_percent_internet_dianshang = #{bisPercentInternetDianshang}</if>
            <if test="bisPercentInternetYouxi != null  and bisPercentInternetYouxi != ''"> and bis_percent_internet_youxi = #{bisPercentInternetYouxi}</if>
            <if test="bisPercentInternetZhifu != null  and bisPercentInternetZhifu != ''"> and bis_percent_internet_zhifu = #{bisPercentInternetZhifu}</if>
            <if test="bisPercentInternetOther != null  and bisPercentInternetOther != ''"> and bis_percent_internet_other = #{bisPercentInternetOther}</if>
            <if test="bisPercentOther != null  and bisPercentOther != ''"> and bis_percent_other = #{bisPercentOther}</if>
            <if test="sumChanquan != null  and sumChanquan != ''"> and sum_chanquan = #{sumChanquan}</if>
            <if test="itOperation != null  and itOperation != ''"> and it_operation = #{itOperation}</if>
            <if test="sort != null "> and sort_ = #{sort}</if>
            <if test="createUser != null "> and create_user = #{createUser}</if>
            <if test="updateUser != null "> and update_user = #{updateUser}</if>
        </where>
    </select>
    
    <select id="selectIdcUseInfrastructureById" parameterType="Long" resultMap="IdcUseInfrastructureResult">
        <include refid="selectIdcUseInfrastructureVo"/>
        where id = #{id}
    </select>
 
    <insert id="insertIdcUseInfrastructure" parameterType="IdcUseInfrastructure" useGeneratedKeys="true" keyProperty="id">
        insert into idc_use_infrastructure
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="baseId != null">base_id,</if>
            <if test="dateNode != null">date_node,</if>
            <if test="formName != null">form_name,</if>
            <if test="formTel != null">form_tel,</if>
            <if test="frameCompBase != null">frame_comp_base,</if>
            <if test="frameCompEnd != null">frame_comp_end,</if>
            <if test="frameElectricity != null">frame_electricity,</if>
            <if test="percentageCloud != null">percentage_cloud,</if>
            <if test="electricityPrice != null">electricity_price,</if>
            <if test="annual != null">annual,</if>
            <if test="cost != null">cost,</if>
            <if test="bisPercentZhengwu != null">bis_percent_zhengwu,</if>
            <if test="bisPercentQiye != null">bis_percent_qiye,</if>
            <if test="bisPercentJinrong != null">bis_percent_jinrong,</if>
            <if test="bisPercentInternetGongyouyun != null">bis_percent_internet_gongyouyun,</if>
            <if test="bisPercentInternetWangzhan != null">bis_percent_internet_wangzhan,</if>
            <if test="bisPercentInternetShiping != null">bis_percent_internet_shiping,</if>
            <if test="bisPercentInternetAi != null">bis_percent_internet_ai,</if>
            <if test="bisPercentInternetDianshang != null">bis_percent_internet_dianshang,</if>
            <if test="bisPercentInternetYouxi != null">bis_percent_internet_youxi,</if>
            <if test="bisPercentInternetZhifu != null">bis_percent_internet_zhifu,</if>
            <if test="bisPercentInternetOther != null">bis_percent_internet_other,</if>
            <if test="bisPercentOther != null">bis_percent_other,</if>
            <if test="sumChanquan != null">sum_chanquan,</if>
            <if test="itOperation != null">it_operation,</if>
            <if test="sort != null">sort_,</if>
            <if test="createTime != null">create_time,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="createUser != null">create_user,</if>
            <if test="updateUser != null">update_user,</if>
            <if test="remark != null">remark,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="baseId != null">#{baseId},</if>
            <if test="dateNode != null">#{dateNode},</if>
            <if test="formName != null">#{formName},</if>
            <if test="formTel != null">#{formTel},</if>
            <if test="frameCompBase != null">#{frameCompBase},</if>
            <if test="frameCompEnd != null">#{frameCompEnd},</if>
            <if test="frameElectricity != null">#{frameElectricity},</if>
            <if test="percentageCloud != null">#{percentageCloud},</if>
            <if test="electricityPrice != null">#{electricityPrice},</if>
            <if test="annual != null">#{annual},</if>
            <if test="cost != null">#{cost},</if>
            <if test="bisPercentZhengwu != null">#{bisPercentZhengwu},</if>
            <if test="bisPercentQiye != null">#{bisPercentQiye},</if>
            <if test="bisPercentJinrong != null">#{bisPercentJinrong},</if>
            <if test="bisPercentInternetGongyouyun != null">#{bisPercentInternetGongyouyun},</if>
            <if test="bisPercentInternetWangzhan != null">#{bisPercentInternetWangzhan},</if>
            <if test="bisPercentInternetShiping != null">#{bisPercentInternetShiping},</if>
            <if test="bisPercentInternetAi != null">#{bisPercentInternetAi},</if>
            <if test="bisPercentInternetDianshang != null">#{bisPercentInternetDianshang},</if>
            <if test="bisPercentInternetYouxi != null">#{bisPercentInternetYouxi},</if>
            <if test="bisPercentInternetZhifu != null">#{bisPercentInternetZhifu},</if>
            <if test="bisPercentInternetOther != null">#{bisPercentInternetOther},</if>
            <if test="bisPercentOther != null">#{bisPercentOther},</if>
            <if test="sumChanquan != null">#{sumChanquan},</if>
            <if test="itOperation != null">#{itOperation},</if>
            <if test="sort != null">#{sort},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="createUser != null">#{createUser},</if>
            <if test="updateUser != null">#{updateUser},</if>
            <if test="remark != null">#{remark},</if>
         </trim>
    </insert>
 
    <update id="updateIdcUseInfrastructure" parameterType="IdcUseInfrastructure">
        update idc_use_infrastructure
        <trim prefix="SET" suffixOverrides=",">
            <if test="baseId != null">base_id = #{baseId},</if>
            <if test="dateNode != null">date_node = #{dateNode},</if>
            <if test="formName != null">form_name = #{formName},</if>
            <if test="formTel != null">form_tel = #{formTel},</if>
            <if test="frameCompBase != null">frame_comp_base = #{frameCompBase},</if>
            <if test="frameCompEnd != null">frame_comp_end = #{frameCompEnd},</if>
            <if test="frameElectricity != null">frame_electricity = #{frameElectricity},</if>
            <if test="percentageCloud != null">percentage_cloud = #{percentageCloud},</if>
            <if test="electricityPrice != null">electricity_price = #{electricityPrice},</if>
            <if test="annual != null">annual = #{annual},</if>
            <if test="cost != null">cost = #{cost},</if>
            <if test="bisPercentZhengwu != null">bis_percent_zhengwu = #{bisPercentZhengwu},</if>
            <if test="bisPercentQiye != null">bis_percent_qiye = #{bisPercentQiye},</if>
            <if test="bisPercentJinrong != null">bis_percent_jinrong = #{bisPercentJinrong},</if>
            <if test="bisPercentInternetGongyouyun != null">bis_percent_internet_gongyouyun = #{bisPercentInternetGongyouyun},</if>
            <if test="bisPercentInternetWangzhan != null">bis_percent_internet_wangzhan = #{bisPercentInternetWangzhan},</if>
            <if test="bisPercentInternetShiping != null">bis_percent_internet_shiping = #{bisPercentInternetShiping},</if>
            <if test="bisPercentInternetAi != null">bis_percent_internet_ai = #{bisPercentInternetAi},</if>
            <if test="bisPercentInternetDianshang != null">bis_percent_internet_dianshang = #{bisPercentInternetDianshang},</if>
            <if test="bisPercentInternetYouxi != null">bis_percent_internet_youxi = #{bisPercentInternetYouxi},</if>
            <if test="bisPercentInternetZhifu != null">bis_percent_internet_zhifu = #{bisPercentInternetZhifu},</if>
            <if test="bisPercentInternetOther != null">bis_percent_internet_other = #{bisPercentInternetOther},</if>
            <if test="bisPercentOther != null">bis_percent_other = #{bisPercentOther},</if>
            <if test="sumChanquan != null">sum_chanquan = #{sumChanquan},</if>
            <if test="itOperation != null">it_operation = #{itOperation},</if>
            <if test="sort != null">sort_ = #{sort},</if>
            <if test="createTime != null">create_time = #{createTime},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="createUser != null">create_user = #{createUser},</if>
            <if test="updateUser != null">update_user = #{updateUser},</if>
            <if test="remark != null">remark = #{remark},</if>
        </trim>
        where id = #{id}
    </update>
 
    <delete id="deleteIdcUseInfrastructureById" parameterType="Long">
        delete from idc_use_infrastructure where id = #{id}
    </delete>
 
    <delete id="deleteIdcUseInfrastructureByIds" parameterType="String">
        delete from idc_use_infrastructure where id in 
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
    </delete>
</mapper>