카테고리 없음

prjt Attach

나주나주 2024. 3. 27. 18:13

<!-- -->

의존성 주입
GoodsAttatchMapper.java ---        GoodsAttatchMapper.xml
   
   
   

 

d
GoodsAttachMapper.java public void insert(GoodsAttachVO vo);
GoodsAttachMapper.xml <insert id="insert">
insert into Attach_goods (uuid, uploadpath, filename, filetype, gno) values (#{uuid}, #{uploadPath}, #{fileName}, #{fileType}, #{gno})
</insert>
   
   
   
   

 

d
GoodsAttachMapper.java public void delete(GoodsAttachVO vo);
GoodsAttachMapper.xml <delete id="delete">
delete from Attach_goods where uuid = #{uuid}
</delete>
   
   
   
   

 

 

d
GoodsAttachMapper.java public List<GoodsAttachVO> findByGno(String gno);
GoodsAttachMapper.xml <select id="findByGno">
select * from Attach_goods where gno = #{gno}
</delete>
   
   
   
   

 

d
GoodsAttachMapper.java p
GoodsAttachMapper.xml <