📄 instoredao.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 + -