📄 outstoredao.java
字号:
/**
*
*/
package com.qrsx.qrsxcrm.dao;
import com.qrsx.qrsxcrm.model.OutStore;
/**
* @author Administrator
*
*/
public class OutStoreDAO extends BaseDAO {
@SuppressWarnings("unchecked")
public OutStoreDAO(Class OutStore) {
super(OutStore);
// TODO Auto-generated constructor stub
}
public void updates(OutStore outStore)
{
OutStore outStore1 = new OutStore();
outStore1=(OutStore) session.get(OutStore.class, outStore.getId());
outStore1.setOutStoreDate(outStore.getOutStoreDate());
outStore1.setOutStoreId(outStore.getOutStoreId());
outStore1.setOrder(outStore.getOrder());
session.update(outStore1);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -