TbAssetInformationMapper.xml 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.asset.mapper.TbAssetInformationMapper">
  6. <resultMap type="TbAssetInformation" id="TbAssetInformationResult">
  7. <result property="id" column="id" />
  8. <result property="code" column="code" />
  9. <result property="name" column="name" />
  10. <result property="number" column="number" />
  11. <result property="imageUrl" column="image_url" />
  12. <result property="categoryNumber" column="category_number" />
  13. <result property="specificationsModel" column="specifications_model" />
  14. <result property="abcCategory" column="abc_category" />
  15. <result property="manageStatus" column="manage_status" />
  16. <result property="userDepartment" column="user_department" />
  17. <result property="department" column="department" />
  18. <result property="responsiblePerson" column="responsible_person" />
  19. <result property="locationNumber" column="location_number" />
  20. <result property="property" column="property" />
  21. <result property="purchaseDate" column="purchase_date" />
  22. <result property="commissioningDate" column="commissioning_date" />
  23. <result property="originalValue" column="original_value" />
  24. <result property="durableYears" column="durable_years" />
  25. <result property="netValue" column="net_value" />
  26. <result property="residualValue" column="residual_value" />
  27. <result property="accumulatedDepreciation" column="accumulated_depreciation" />
  28. <result property="lastDepreciationDate" column="last_depreciation_date" />
  29. <result property="depreciationMethod" column="depreciation_method" />
  30. <result property="contractNumber" column="contract_number" />
  31. <result property="factoryNumber" column="factory_number" />
  32. <result property="manufacturer" column="manufacturer" />
  33. <result property="supplier" column="supplier" />
  34. <result property="purpose" column="purpose" />
  35. <result property="maintenanceDate" column="maintenance_date" />
  36. <result property="maintenanceTel" column="maintenance_tel" />
  37. <result property="maintenanceUser" column="maintenance_user" />
  38. <result property="corporation" column="corporation" />
  39. <result property="recordStatus" column="record_status" />
  40. <result property="remark" column="remark" />
  41. <result property="createBy" column="create_by" />
  42. <result property="createTime" column="create_time" />
  43. <result property="updateBy" column="update_by" />
  44. <result property="updateTime" column="update_time" />
  45. <result property="isWhitelist" column="is_whitelist" />
  46. <result property="quantity" column="quantity" />
  47. <result property="units" column="units" />
  48. <result property="paymentReceivingTime" column="payment_receiving_time" />
  49. <result property="epc" column="epc" />
  50. <result property="epcReplenishLength" column="epc_replenish_length" />
  51. <result property="epcPreSupplement" column="epc_pre_supplement" />
  52. <result property="lifeExpectancy" column="life_expectancy" />
  53. <result property="lifeUnits" column="life_units" />
  54. <result property="startDate" column="start_date" />
  55. </resultMap>
  56. <sql id="selectTbAssetInformationVo">
  57. select id, code, name, number, image_url, category_number, specifications_model, abc_category, manage_status, user_department, department, responsible_person, location_number, property, purchase_date, commissioning_date, original_value, durable_years, net_value, residual_value, accumulated_depreciation, last_depreciation_date, depreciation_method, contract_number, factory_number, manufacturer, supplier, purpose, maintenance_date, maintenance_tel, maintenance_user, corporation, record_status, remark, create_by, create_time, update_by, update_time, is_whitelist, quantity, units, payment_receiving_time, epc, epc_replenish_length, epc_pre_supplement, life_expectancy, life_units, start_date from tb_asset_information
  58. </sql>
  59. <sql id="selectTbAssetInformation">
  60. SELECT
  61. a.id, a.code, a.name, a.number,
  62. a.image_url imageUrl,
  63. a.category_number categoryNumber,
  64. a.specifications_model specificationsModel,
  65. a.abc_category abcCategory,
  66. a.manage_status manageStatus,
  67. a.user_department userDepartment,
  68. a.department,
  69. a.responsible_person responsiblePerson,
  70. a.location_number locationNumber,
  71. a.property,
  72. a.purchase_date purchaseDate,
  73. a.commissioning_date commissioningDate,
  74. a.original_value originalValue,
  75. a.durable_years durableYears,
  76. a.net_value netValue,
  77. a.residual_value residualValue,
  78. a.accumulated_depreciation accumulatedDepreciation,
  79. a.last_depreciation_date lastDepreciationDate,
  80. a.depreciation_method depreciationMethod,
  81. a.contract_number contractNumber,
  82. a.factory_number factoryNumber,
  83. a.manufacturer,
  84. a.supplier,
  85. a.purpose,
  86. a.maintenance_tel maintenanceTel,
  87. a.maintenance_date maintenanceDate,
  88. a.maintenance_user maintenanceUser,
  89. a.corporation,
  90. a.record_status recordStatus,
  91. a.remark,
  92. a.create_by createBy,
  93. a.create_time createTime,
  94. a.update_by updateBy,
  95. a.update_time updateTime,
  96. a.is_whitelist isWhitelist,
  97. a.quantity,
  98. a.units,
  99. a.payment_receiving_time paymentReceivingTime,
  100. a.epc,
  101. a.epc_replenish_length epcReplenishLength,
  102. a.epc_pre_supplement epcPreSupplement,
  103. a.life_expectancy lifeExpectancy,
  104. a.life_units lifeUnits,
  105. a.start_date startDate,
  106. b.id locationId,
  107. b.name locationName,
  108. b.label locationLabel,
  109. g.id parentLocationId,
  110. g.name parentLocationName,
  111. g.label parentLocationLabel,
  112. h.id ancestorLocationId,
  113. h.name ancestorLocationName,
  114. h.label ancestorLocationLabel,
  115. c.id categoryId,
  116. c.name categoryName,
  117. d.dept_name userDepartmentName,
  118. e.dept_name departmentName,
  119. f.dept_name corporationName
  120. FROM `tb_asset_information` a
  121. LEFT JOIN tb_location b ON a.location_number = b.number
  122. LEFT JOIN tb_location g ON b.parent_id = g.id
  123. LEFT JOIN tb_location h ON g.parent_id = h.id
  124. LEFT JOIN tb_asset_category c ON a.category_number = c.number
  125. LEFT JOIN sys_dept d ON a.user_department = d.dept_id
  126. LEFT JOIN sys_dept e ON a.department = e.dept_id
  127. LEFT JOIN sys_dept f ON a.corporation = f.dept_id
  128. </sql>
  129. <select id="selectInfoList" parameterType="TbAssetInformation" resultType="TbAssetInformation">
  130. SELECT
  131. a.id, a.code, a.name, a.number,
  132. a.image_url imageUrl,
  133. a.category_number categoryNumber,
  134. a.specifications_model specificationsModel,
  135. a.abc_category abcCategory,
  136. a.manage_status manageStatus,
  137. a.user_department userDepartment,
  138. a.department,
  139. a.responsible_person responsiblePerson,
  140. a.location_number locationNumber,
  141. a.property,
  142. a.purchase_date purchaseDate,
  143. a.commissioning_date commissioningDate,
  144. a.original_value originalValue,
  145. a.durable_years durableYears,
  146. a.net_value netValue,
  147. a.residual_value residualValue,
  148. a.accumulated_depreciation accumulatedDepreciation,
  149. a.last_depreciation_date lastDepreciationDate,
  150. a.depreciation_method depreciationMethod,
  151. a.contract_number contractNumber,
  152. a.factory_number factoryNumber,
  153. a.manufacturer,
  154. a.supplier,
  155. a.purpose,
  156. a.maintenance_tel maintenanceTel,
  157. a.maintenance_date maintenanceDate,
  158. a.maintenance_user maintenanceUser,
  159. a.corporation,
  160. a.record_status recordStatus,
  161. a.remark,
  162. a.create_by createBy,
  163. a.create_time createTime,
  164. a.update_by updateBy,
  165. a.update_time updateTime,
  166. a.is_whitelist isWhitelist,
  167. a.quantity,
  168. a.units,
  169. a.payment_receiving_time paymentReceivingTime,
  170. a.epc,
  171. a.epc_replenish_length epcReplenishLength,
  172. a.epc_pre_supplement epcPreSupplement,
  173. a.life_expectancy lifeExpectancy,
  174. a.life_units lifeUnits,
  175. a.start_date startDate,
  176. b.id locationId,
  177. b.name locationName,
  178. b.label locationLabel,
  179. c.id categoryId,
  180. c.name categoryName,
  181. d.dept_name userDepartmentName,
  182. e.dept_name departmentName,
  183. f.dept_name corporationName
  184. FROM `tb_asset_information` a
  185. LEFT JOIN tb_location b ON a.location_number = b.number
  186. LEFT JOIN tb_asset_category c ON a.category_number = c.number
  187. LEFT JOIN sys_dept d ON a.user_department = d.dept_id
  188. LEFT JOIN sys_dept e ON a.department = e.dept_id
  189. LEFT JOIN sys_dept f ON a.corporation = f.dept_id
  190. <where>
  191. <if test="locationNumber != null and locationNumber != ''"> and a.location_number in
  192. <foreach collection="nlist" item="item" open="(" separator="," close=")">
  193. #{item}
  194. </foreach>
  195. </if>
  196. </where>
  197. </select>
  198. <!-- <select id="selectTbAssetInformationList" parameterType="TbAssetInformation" resultMap="TbAssetInformationResult">-->
  199. <!-- <include refid="selectTbAssetInformationVo"/>-->
  200. <!-- <where> -->
  201. <!-- <if test="code != null and code != ''"> and code = #{code}</if>-->
  202. <!-- <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>-->
  203. <!-- <if test="number != null and number != ''"> and number = #{number}</if>-->
  204. <!-- <if test="imageUrl != null and imageUrl != ''"> and image_url = #{imageUrl}</if>-->
  205. <!-- <if test="categoryNumber != null and categoryNumber != ''"> and category_number = #{categoryNumber}</if>-->
  206. <!-- <if test="specificationsModel != null and specificationsModel != ''"> and specifications_model = #{specificationsModel}</if>-->
  207. <!-- <if test="abcCategory != null and abcCategory != ''"> and abc_category = #{abcCategory}</if>-->
  208. <!-- <if test="manageStatus != null "> and manage_status = #{manageStatus}</if>-->
  209. <!-- <if test="userDepartment != null and userDepartment != ''"> and user_department = #{userDepartment}</if>-->
  210. <!-- <if test="department != null and department != ''"> and department = #{department}</if>-->
  211. <!-- <if test="responsiblePerson != null and responsiblePerson != ''"> and responsible_person = #{responsiblePerson}</if>-->
  212. <!-- <if test="locationNumber != null and locationNumber != ''"> and location_number in-->
  213. <!-- <foreach collection="nlist" item="item" open="(" separator="," close=")">-->
  214. <!-- #{item}-->
  215. <!-- </foreach> </if>-->
  216. <!-- <if test="property != null and property != ''"> and property = #{property}</if>-->
  217. <!-- <if test="purchaseDate != null "> and purchase_date = #{purchaseDate}</if>-->
  218. <!-- <if test="commissioningDate != null "> and commissioning_date = #{commissioningDate}</if>-->
  219. <!-- <if test="originalValue != null and originalValue != ''"> and original_value = #{originalValue}</if>-->
  220. <!-- <if test="durableYears != null "> and durable_years = #{durableYears}</if>-->
  221. <!-- <if test="netValue != null and netValue != ''"> and net_value = #{netValue}</if>-->
  222. <!-- <if test="residualValue != null and residualValue != ''"> and residual_value = #{residualValue}</if>-->
  223. <!-- <if test="accumulatedDepreciation != null and accumulatedDepreciation != ''"> and accumulated_depreciation = #{accumulatedDepreciation}</if>-->
  224. <!-- <if test="lastDepreciationDate != null "> and last_depreciation_date = #{lastDepreciationDate}</if>-->
  225. <!-- <if test="depreciationMethod != null "> and depreciation_method = #{depreciationMethod}</if>-->
  226. <!-- <if test="contractNumber != null and contractNumber != ''"> and contract_number = #{contractNumber}</if>-->
  227. <!-- <if test="factoryNumber != null and factoryNumber != ''"> and factory_number = #{factoryNumber}</if>-->
  228. <!-- <if test="manufacturer != null and manufacturer != ''"> and manufacturer = #{manufacturer}</if>-->
  229. <!-- <if test="supplier != null and supplier != ''"> and supplier = #{supplier}</if>-->
  230. <!-- <if test="purpose != null and purpose != ''"> and purpose = #{purpose}</if>-->
  231. <!-- <if test="maintenanceDate != null "> and maintenance_date = #{maintenanceDate}</if>-->
  232. <!-- <if test="maintenanceTel != null and maintenanceTel != ''"> and maintenance_tel = #{maintenanceTel}</if>-->
  233. <!-- <if test="maintenanceUser != null and maintenanceUser != ''"> and maintenance_user = #{maintenanceUser}</if>-->
  234. <!-- <if test="corporation != null and corporation != ''"> and corporation = #{corporation}</if>-->
  235. <!-- <if test="recordStatus != null "> and record_status = #{recordStatus}</if>-->
  236. <!-- <if test="isWhitelist != null and isWhitelist != ''"> and is_whitelist = #{isWhitelist}</if>-->
  237. <!-- <if test="quantity != null"> and quantity = #{quantity}</if>-->
  238. <!-- <if test="units != null and units != ''"> and units = #{units}</if>-->
  239. <!-- <if test="paymentReceivingTime != null"> and payment_receiving_time = #{paymentReceivingTime}</if>-->
  240. <!-- <if test="reservedColumnE != null and reservedColumnE != ''"> and reserved_column_e = #{reservedColumnE}</if>-->
  241. <!-- <if test="reservedColumnF != null and reservedColumnF != ''"> and reserved_column_f = #{reservedColumnF}</if>-->
  242. <!-- <if test="lifeExpectancy != null and lifeExpectancy != ''"> and life_expectancy = #{lifeExpectancy}</if>-->
  243. <!-- <if test="lifeUnits != null and lifeUnits != ''"> and life_units = #{lifeUnits}</if>-->
  244. <!-- <if test="startDate != null"> and start_date = #{startDate}</if>-->
  245. <!-- </where>-->
  246. <!-- </select>-->
  247. <select id="selectTbAssetInformationList" parameterType="TbAssetInformation" resultType="TbAssetInformation">
  248. <include refid="selectTbAssetInformation"/>
  249. <where>
  250. <if test="code != null and code != ''"> and a.code = #{code}</if>
  251. <if test="name != null and name != ''"> and a.name like concat('%', #{name}, '%')</if>
  252. <if test="number != null and number != ''"> and a.number like concat('%', #{number}, '%')</if>
  253. <if test="imageUrl != null and imageUrl != ''"> and a.image_url = #{imageUrl}</if>
  254. <if test="categoryNumber != null and categoryNumber != ''"> and a.category_number like concat('%', #{number}, '%')</if>
  255. <if test="specificationsModel != null and specificationsModel != ''"> and a.specifications_model = #{specificationsModel}</if>
  256. <if test="abcCategory != null and abcCategory != ''"> and a.abc_category = #{abcCategory}</if>
  257. <if test="manageStatus != null "> and a.manage_status = #{manageStatus}</if>
  258. <if test="userDepartment != null and userDepartment != ''"> and a.user_department = #{userDepartment}</if>
  259. <if test="department != null and department != ''"> and a.department = #{department}</if>
  260. <if test="responsiblePerson != null and responsiblePerson != ''"> and a.responsible_person = #{responsiblePerson}</if>
  261. <if test="locationNumber != null and locationNumber != ''"> and a.location_number in
  262. <foreach collection="nlist" item="item" open="(" separator="," close=")">
  263. #{item}
  264. </foreach> </if>
  265. <if test="property != null and property != ''"> and a.property = #{property}</if>
  266. <if test="purchaseDate != null "> and a.purchase_date = #{purchaseDate}</if>
  267. <if test="commissioningDate != null "> and a.commissioning_date = #{commissioningDate}</if>
  268. <if test="originalValue != null and originalValue != ''"> and a.original_value = #{originalValue}</if>
  269. <if test="durableYears != null "> and a.durable_years = #{durableYears}</if>
  270. <if test="netValue != null and netValue != ''"> and a.net_value = #{netValue}</if>
  271. <if test="residualValue != null and residualValue != ''"> and a.residual_value = #{residualValue}</if>
  272. <if test="accumulatedDepreciation != null and accumulatedDepreciation != ''"> and accumulated_depreciation = #{accumulatedDepreciation}</if>
  273. <if test="lastDepreciationDate != null "> and a.last_depreciation_date = #{lastDepreciationDate}</if>
  274. <if test="depreciationMethod != null "> and a.depreciation_method = #{depreciationMethod}</if>
  275. <if test="contractNumber != null and contractNumber != ''"> and a.contract_number = #{contractNumber}</if>
  276. <if test="factoryNumber != null and factoryNumber != ''"> and a.factory_number = #{factoryNumber}</if>
  277. <if test="manufacturer != null and manufacturer != ''"> and a.manufacturer = #{manufacturer}</if>
  278. <if test="supplier != null and supplier != ''"> and a.supplier = #{supplier}</if>
  279. <if test="purpose != null and purpose != ''"> and a.purpose = #{purpose}</if>
  280. <if test="maintenanceDate != null "> and a.maintenance_date = #{maintenanceDate}</if>
  281. <if test="maintenanceTel != null and maintenanceTel != ''"> and a.maintenance_tel = #{maintenanceTel}</if>
  282. <if test="maintenanceUser != null and maintenanceUser != ''"> and a.maintenance_user = #{maintenanceUser}</if>
  283. <if test="corporation != null and corporation != ''"> and a.corporation = #{corporation}</if>
  284. <if test="recordStatus != null "> and a.record_status = #{recordStatus}</if>
  285. <if test="isWhitelist != null and isWhitelist != ''"> and a.is_whitelist = #{isWhitelist}</if>
  286. <if test="quantity != null"> and a.quantity = #{quantity}</if>
  287. <if test="units != null and units != ''"> and a.units = #{units}</if>
  288. <if test="paymentReceivingTime != null"> and a.payment_receiving_time = #{paymentReceivingTime}</if>
  289. <if test="epc != null and epc != ''"> and a.epc = #{epc}</if>
  290. <if test="epcReplenishLength != null"> and a.epc_replenish_length = #{epcReplenishLength}</if>
  291. <if test="epcPreSupplement != null">and a.epc_pre_supplement = #{epcPreSupplement}</if>
  292. <if test="lifeExpectancy != null"> and a.life_expectancy = #{lifeExpectancy}</if>
  293. <if test="lifeUnits != null and lifeUnits != ''"> and a.life_units = #{lifeUnits}</if>
  294. <if test="startDate != null"> and a.start_date = #{startDate}</if>
  295. </where>
  296. </select>
  297. <select id="selectNumberByLocations" parameterType="String" resultType="String">
  298. select a.number from tb_asset_information a
  299. where a.location_number in
  300. <foreach item="item" collection="locations" open="(" separator="," close=")">
  301. #{item}
  302. </foreach>
  303. </select>
  304. <select id="selectAssetInformationByLocations" parameterType="String" resultType="TbAssetInformation">
  305. <include refid="selectTbAssetInformation"/>
  306. where a.location_number in
  307. <foreach item="item" collection="locations" open="(" separator="," close=")">
  308. #{item}
  309. </foreach>
  310. </select>
  311. <select id="selectTbAssetInformationByEpcList" parameterType="String" resultType="TbAssetInformation">
  312. <include refid="selectTbAssetInformation"/>
  313. where a.epc in
  314. <foreach item="epc" collection="epcList" open="(" separator="," close=")">
  315. #{epc}
  316. </foreach>
  317. </select>
  318. <!-- <select id="selectTbAssetInformationById" parameterType="Long" resultMap="TbAssetInformationResult">-->
  319. <!-- <include refid="selectTbAssetInformationVo"/>-->
  320. <!-- where id = #{id}-->
  321. <!-- </select>-->
  322. <select id="selectTbAssetInformationById" parameterType="Long" resultType="TbAssetInformation">
  323. <include refid="selectTbAssetInformation"/>
  324. where a.id = #{id}
  325. </select>
  326. <!--List<TbAssetInformation> selectTbAssetInformationByIds(Long[] ids);-->
  327. <!-- <select id="selectTbAssetInformationByIds" parameterType="String" resultMap="TbAssetInformationResult">-->
  328. <!-- <include refid="selectTbAssetInformationVo"/>-->
  329. <!-- where id in-->
  330. <!-- <foreach item="id" collection="list" open="(" separator="," close=")">-->
  331. <!-- #{id}-->
  332. <!-- </foreach>-->
  333. <!-- </select>-->
  334. <select id="selectTbAssetInformationByIds" parameterType="String" resultType="TbAssetInformation">
  335. <include refid="selectTbAssetInformation"/>
  336. where a.id in
  337. <foreach item="id" collection="list" open="(" separator="," close=")">
  338. #{id}
  339. </foreach>
  340. </select>
  341. <!-- <select id="selectTbAssetInformationByAssetNumber" parameterType="String" resultMap="TbAssetInformationResult">-->
  342. <!-- <include refid="selectTbAssetInformationVo"></include>-->
  343. <!-- where number = #{assetNumber}-->
  344. <!-- </select>-->
  345. <select id="selectTbAssetInformationByAssetNumber" parameterType="String" resultType="TbAssetInformation">
  346. <include refid="selectTbAssetInformation"></include>
  347. where a.number = #{assetNumber}
  348. </select>
  349. <select id="selectTbAssetInformationByEpc" parameterType="String" resultType="TbAssetInformation">
  350. <include refid="selectTbAssetInformation"></include>
  351. where a.epc = #{epc}
  352. </select>
  353. <insert id="insertTbAssetInformation" parameterType="TbAssetInformation" useGeneratedKeys="true" keyProperty="id">
  354. insert into tb_asset_information
  355. <trim prefix="(" suffix=")" suffixOverrides=",">
  356. <if test="code != null">code,</if>
  357. <if test="name != null">name,</if>
  358. <if test="number != null and number != ''">number,</if>
  359. <if test="imageUrl != null">image_url,</if>
  360. <if test="categoryNumber != null">category_number,</if>
  361. <if test="specificationsModel != null and specificationsModel != ''">specifications_model,</if>
  362. <if test="abcCategory != null">abc_category,</if>
  363. <if test="manageStatus != null">manage_status,</if>
  364. <if test="userDepartment != null">user_department,</if>
  365. <if test="department != null">department,</if>
  366. <if test="responsiblePerson != null">responsible_person,</if>
  367. <if test="locationNumber != null">location_number,</if>
  368. <if test="property != null">property,</if>
  369. <if test="purchaseDate != null">purchase_date,</if>
  370. <if test="commissioningDate != null">commissioning_date,</if>
  371. <if test="originalValue != null">original_value,</if>
  372. <if test="durableYears != null">durable_years,</if>
  373. <if test="netValue != null">net_value,</if>
  374. <if test="residualValue != null">residual_value,</if>
  375. <if test="accumulatedDepreciation != null">accumulated_depreciation,</if>
  376. <if test="lastDepreciationDate != null">last_depreciation_date,</if>
  377. <if test="depreciationMethod != null">depreciation_method,</if>
  378. <if test="contractNumber != null">contract_number,</if>
  379. <if test="factoryNumber != null">factory_number,</if>
  380. <if test="manufacturer != null">manufacturer,</if>
  381. <if test="supplier != null">supplier,</if>
  382. <if test="purpose != null">purpose,</if>
  383. <if test="maintenanceDate != null">maintenance_date,</if>
  384. <if test="maintenanceTel != null">maintenance_tel,</if>
  385. <if test="maintenanceUser != null">maintenance_user,</if>
  386. <if test="corporation != null">corporation,</if>
  387. <if test="recordStatus != null">record_status,</if>
  388. <if test="remark != null">remark,</if>
  389. <if test="createBy != null">create_by,</if>
  390. <if test="createTime != null">create_time,</if>
  391. <if test="updateBy != null">update_by,</if>
  392. <if test="updateTime != null">update_time,</if>
  393. <if test="isWhitelist != null">is_whitelist,</if>
  394. <if test="quantity != null">quantity,</if>
  395. <if test="units != null">units,</if>
  396. <if test="paymentReceivingTime != null">payment_receiving_time,</if>
  397. <if test="epc != null">epc,</if>
  398. <if test="epcReplenishLength != null">epc_replenish_length,</if>
  399. <if test="epcPreSupplement != null">epc_pre_supplement,</if>
  400. <if test="lifeExpectancy != null">life_expectancy,</if>
  401. <if test="lifeUnits != null">life_units,</if>
  402. <if test="startDate != null">start_date,</if>
  403. </trim>
  404. <trim prefix="values (" suffix=")" suffixOverrides=",">
  405. <if test="code != null">#{code},</if>
  406. <if test="name != null">#{name},</if>
  407. <if test="number != null and number != ''">#{number},</if>
  408. <if test="imageUrl != null">#{imageUrl},</if>
  409. <if test="categoryNumber != null">#{categoryNumber},</if>
  410. <if test="specificationsModel != null and specificationsModel != ''">#{specificationsModel},</if>
  411. <if test="abcCategory != null">#{abcCategory},</if>
  412. <if test="manageStatus != null">#{manageStatus},</if>
  413. <if test="userDepartment != null">#{userDepartment},</if>
  414. <if test="department != null">#{department},</if>
  415. <if test="responsiblePerson != null">#{responsiblePerson},</if>
  416. <if test="locationNumber != null">#{locationNumber},</if>
  417. <if test="property != null">#{property},</if>
  418. <if test="purchaseDate != null">#{purchaseDate},</if>
  419. <if test="commissioningDate != null">#{commissioningDate},</if>
  420. <if test="originalValue != null">#{originalValue},</if>
  421. <if test="durableYears != null">#{durableYears},</if>
  422. <if test="netValue != null">#{netValue},</if>
  423. <if test="residualValue != null">#{residualValue},</if>
  424. <if test="accumulatedDepreciation != null">#{accumulatedDepreciation},</if>
  425. <if test="lastDepreciationDate != null">#{lastDepreciationDate},</if>
  426. <if test="depreciationMethod != null">#{depreciationMethod},</if>
  427. <if test="contractNumber != null">#{contractNumber},</if>
  428. <if test="factoryNumber != null">#{factoryNumber},</if>
  429. <if test="manufacturer != null">#{manufacturer},</if>
  430. <if test="supplier != null">#{supplier},</if>
  431. <if test="purpose != null">#{purpose},</if>
  432. <if test="maintenanceDate != null">#{maintenanceDate},</if>
  433. <if test="maintenanceTel != null">#{maintenanceTel},</if>
  434. <if test="maintenanceUser != null">#{maintenanceUser},</if>
  435. <if test="corporation != null">#{corporation},</if>
  436. <if test="recordStatus != null">#{recordStatus},</if>
  437. <if test="remark != null">#{remark},</if>
  438. <if test="createBy != null">#{createBy},</if>
  439. <if test="createTime != null">#{createTime},</if>
  440. <if test="updateBy != null">#{updateBy},</if>
  441. <if test="updateTime != null">#{updateTime},</if>
  442. <if test="isWhitelist != null">#{isWhitelist},</if>
  443. <if test="quantity != null">#{quantity},</if>
  444. <if test="units != null">#{units},</if>
  445. <if test="paymentReceivingTime != null">#{paymentReceivingTime},</if>
  446. <if test="epc != null">#{epc},</if>
  447. <if test="epcReplenishLength != null">#{epcReplenishLength},</if>
  448. <if test="epcPreSupplement != null">#{epcPreSupplement},</if>
  449. <if test="lifeExpectancy != null">#{lifeExpectancy},</if>
  450. <if test="lifeUnits != null">#{lifeUnits},</if>
  451. <if test="startDate != null">#{startDate},</if>
  452. </trim>
  453. </insert>
  454. <update id="updateTbAssetInformation" parameterType="TbAssetInformation">
  455. update tb_asset_information
  456. <trim prefix="SET" suffixOverrides=",">
  457. <if test="code != null">code = #{code},</if>
  458. <if test="name != null">name = #{name},</if>
  459. <if test="number != null and number != ''">number = #{number},</if>
  460. <if test="imageUrl != null">image_url = #{imageUrl},</if>
  461. <if test="categoryNumber != null">category_number = #{categoryNumber},</if>
  462. <if test="specificationsModel != null and specificationsModel != ''">specifications_model = #{specificationsModel},</if>
  463. <if test="abcCategory != null">abc_category = #{abcCategory},</if>
  464. <if test="manageStatus != null">manage_status = #{manageStatus},</if>
  465. <if test="userDepartment != null">user_department = #{userDepartment},</if>
  466. <if test="department != null">department = #{department},</if>
  467. <if test="responsiblePerson != null">responsible_person = #{responsiblePerson},</if>
  468. <if test="locationNumber != null">location_number = #{locationNumber},</if>
  469. <if test="property != null">property = #{property},</if>
  470. <if test="purchaseDate != null">purchase_date = #{purchaseDate},</if>
  471. <if test="commissioningDate != null">commissioning_date = #{commissioningDate},</if>
  472. <if test="originalValue != null">original_value = #{originalValue},</if>
  473. <if test="durableYears != null">durable_years = #{durableYears},</if>
  474. <if test="netValue != null">net_value = #{netValue},</if>
  475. <if test="residualValue != null">residual_value = #{residualValue},</if>
  476. <if test="accumulatedDepreciation != null">accumulated_depreciation = #{accumulatedDepreciation},</if>
  477. <if test="lastDepreciationDate != null">last_depreciation_date = #{lastDepreciationDate},</if>
  478. <if test="depreciationMethod != null">depreciation_method = #{depreciationMethod},</if>
  479. <if test="contractNumber != null">contract_number = #{contractNumber},</if>
  480. <if test="factoryNumber != null">factory_number = #{factoryNumber},</if>
  481. <if test="manufacturer != null">manufacturer = #{manufacturer},</if>
  482. <if test="supplier != null">supplier = #{supplier},</if>
  483. <if test="purpose != null">purpose = #{purpose},</if>
  484. <if test="maintenanceDate != null">maintenance_date = #{maintenanceDate},</if>
  485. <if test="maintenanceTel != null">maintenance_tel = #{maintenanceTel},</if>
  486. <if test="maintenanceUser != null">maintenance_user = #{maintenanceUser},</if>
  487. <if test="corporation != null">corporation = #{corporation},</if>
  488. <if test="recordStatus != null">record_status = #{recordStatus},</if>
  489. <if test="remark != null">remark = #{remark},</if>
  490. <if test="createBy != null">create_by = #{createBy},</if>
  491. <if test="createTime != null">create_time = #{createTime},</if>
  492. <if test="updateBy != null">update_by = #{updateBy},</if>
  493. <if test="updateTime != null">update_time = #{updateTime},</if>
  494. <if test="isWhitelist != null">is_whitelist = #{isWhitelist},</if>
  495. <if test="quantity != null">quantity = #{quantity},</if>
  496. <if test="units != null">units = #{units},</if>
  497. <if test="paymentReceivingTime != null">payment_receiving_time = #{paymentReceivingTime},</if>
  498. <if test="epc != null">epc= #{epc},</if>
  499. <if test="epcReplenishLength != null">epc_replenish_length = #{epcReplenishLength},</if>
  500. <if test="epcPreSupplement != null">epc_pre_supplement = #{epcPreSupplement},</if>
  501. <if test="lifeExpectancy != null">life_expectancy = #{lifeExpectancy},</if>
  502. <if test="lifeUnits != null">life_units = #{lifeUnits},</if>
  503. <if test="startDate != null">start_date = #{startDate},</if>
  504. </trim>
  505. where id = #{id}
  506. </update>
  507. <update id="updateProperty" parameterType="TbAssetInformation">
  508. update tb_asset_information set manage_status = #{manageStatus} where number = #{number}
  509. </update>
  510. <delete id="deleteTbAssetInformationById" parameterType="Long">
  511. delete from tb_asset_information where id = #{id}
  512. </delete>
  513. <delete id="deleteTbAssetInformationByIds" parameterType="String">
  514. delete from tb_asset_information where id in
  515. <foreach item="id" collection="array" open="(" separator="," close=")">
  516. #{id}
  517. </foreach>
  518. </delete>
  519. </mapper>