INSERT INTO GoodsAuthLog ( goodsauthlogid ,adminid,authtype,
objecttype,objectid,uid,created,goods,starttime,
endtime,description,period )
Values ( nextval('seq_goodsauthlogid'),#{adminid},#{authtype},
#{objecttype},#{objectid},#{uid}, current_timestamp ,#{goods},#{starttime},
#{endtime},#{description},#{period})
INSERT INTO GoodsAuthLog ( goodsauthlogid,adminid,authtype,
objecttype,objectid,uid,created,goods,starttime,
endtime,description )
Values
( nextval('seq_goodsauthlogid') ,
#{item.adminid} , #{item.authtype},
#{item.objecttype} , #{item.objectid},
#{item.uid} , current_timestamp ,
#{item.goods} , #{item.starttime},
#{item.endtime} , #{item.description} )