SELECT goods_standard_id, goods_standard_name, goods_id, dept_goods_category_id, goods_price,
discount_price, group_price, goods_num, create_by, create_time, sale_num, status, update_by, update_time,
remark
FROM goods_standard
INSERT INTO goods_standard(
goods_standard_name,
goods_id,
dept_goods_category_id
goods_price,
discount_price,
group_price,
goods_num,
sale_num,
status,
remark,
create_by,
create_time
)
VALUES(
#{goodsStandardName},
#{goodsId},
#{deptGoodsCategoryId}
#{goodsPrice},
#{discountPrice},
#{groupPrice},
#{goodsNum},
#{saleNum},
#{status},
#{remark},
#{createBy},
sysdate()
);