|
|
@@ -1380,11 +1380,8 @@
|
|
|
</update>
|
|
|
|
|
|
<!-- 상품코드 생성 -->
|
|
|
- <insert id="createGoodsSequence" parameterType="Goods">
|
|
|
- /* TssGoods.createGoodsSequence */
|
|
|
- <selectKey keyProperty="goodsSq" resultType="int" order="AFTER">
|
|
|
- SELECT MAX(GOODS_SQ) FROM TB_GOODS_SEQUENCE
|
|
|
- </selectKey>
|
|
|
+ <insert id="createGoodsSequence" parameterType="Goods" keyProperty="goodsSq">
|
|
|
+ /* TssGoods.createGoodsSequence */
|
|
|
INSERT INTO TB_GOODS_SEQUENCE (GOODS_SQ) VALUES (NULL)
|
|
|
</insert>
|
|
|
|