⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instoredao.java

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JAVA
字号:
/**
 * 
 */
package com.qrsx.qrsxcrm.dao;

import com.qrsx.qrsxcrm.model.Duty;
import com.qrsx.qrsxcrm.model.InStore;

/**
 * @author Administrator
 *
 */
public class InStoreDAO extends BaseDAO{

	@SuppressWarnings("unchecked")
	public InStoreDAO(Class InStore) {
		super(InStore);
		// TODO Auto-generated constructor stub
	}
	
	public void updates(InStore inStore)
	{
		InStore inStore1 = new InStore();
		inStore1=(InStore) session.get(InStore.class, inStore.getId());
		inStore1.setInStoreDate(inStore.getInStoreDate());
		inStore1.setInStoreId(inStore.getInStoreId());
		inStore1.setStock(inStore1.getStock());
		session.update(inStore1);
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -