package com.dao; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import com.form.GoodsForm; import com.form.LogForm; import com.tools.JDBConnection; public class GoodsAndLogDao { private GoodsForm goodsForm = null; private LogForm logForm = null; private JDBConnection connection = null; public GoodsAndLogDao() { connection = new JDBConnection(); } public boolean operationGoodsAndLog(String sql) { return connection.executeUpdate(sql); } public LogForm queryCarLogForm(Integer car_id) { String sql = "select * from tb_carlog where car_id=" + car_id + ""; ResultSet rs = connection.executeQuery(sql); logForm = null; try { while (rs.next()) { logForm = new LogForm(); logForm.setId(rs.getInt(1)); logForm.setGoods_id(rs.getString(2)); logForm.setCar_id(rs.getString(3)); logForm.setStartTime(rs.getString(4)); logForm.setEndTime(rs.getString(5)); logForm.setDescribe(rs.getString(6)); } } catch (SQLException e) { e.printStackTrace(); } return logForm; } public static void main(String[] args) { GoodsAndLogDao dao = new GoodsAndLogDao(); LogForm form = dao.queryCarLogForm(4); System.out.println(form.getId()); } public GoodsForm queryGoodsForm(String goods_id) { String sql = "select * from tb_operationgoods where goods_id='" + goods_id + "'"; ResultSet rs = connection.executeQuery(sql); try { while (rs.next()) { goodsForm = new GoodsForm(); goodsForm.setId(rs.getInt(1)); goodsForm.setCar_id(rs.getString(2)); goodsForm.setCustomer_id(rs.getString(3)); goodsForm.setGoods_id(rs.getString(4)); goodsForm.setGoods_name(rs.getString(5)); goodsForm.setGoods_tel(rs.getString(6)); goodsForm.setGoods_address(rs.getString(7)); goodsForm.setGoods_sure(rs.getString(8)); } } catch (SQLException e) { e.printStackTrace(); } return goodsForm; } public List queryGoodsList() { List list=new ArrayList(); String sql = "select * from tb_operationgoods order by id desc"; ResultSet rs = connection.executeQuery(sql); try { while (rs.next()) { goodsForm = new GoodsForm(); goodsForm.setId(rs.getInt(1)); goodsForm.setCar_id(rs.getString(2)); goodsForm.setCustomer_id(rs.getString(3)); goodsForm.setGoods_id(rs.getString(4)); goodsForm.setGoods_name(rs.getString(5)); goodsForm.setGoods_tel(rs.getString(6)); goodsForm.setGoods_address(rs.getString(7)); goodsForm.setGoods_sure(rs.getString(8)); list.add(goodsForm); } } catch (SQLException e) { e.printStackTrace(); } return list; } }
最近下载更多
lxsnh123 LV3
2022年11月18日
微信网友_5963854197018624 LV7
2022年6月27日
testuser1234567 LV24
2022年6月15日
1532593037 LV8
2022年3月31日
北诺成尘 LV4
2022年3月12日
18784679855 LV8
2022年2月27日
Gaodaima LV6
2022年2月23日
judy0971 LV12
2020年9月8日
qq2528732622 LV8
2020年6月18日
无名的码字员 LV3
2020年6月17日
最近浏览更多
港港hhhhhh LV1
5月20日
1134116035
2月24日
暂无贡献等级
草帽小小鸡 LV7
2023年11月25日
哇塞塞哈哈哈 LV8
2023年5月4日
lxsnh123 LV3
2022年11月18日
gaoxuyang LV8
2022年10月26日
mumuzhigang LV1
2022年6月28日
微信网友_5963854197018624 LV7
2022年6月27日
testuser1234567 LV24
2022年6月15日
dt1234567 LV2
2022年5月12日