- 浏览: 3306 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
kimmking:
the lib-file jdom.jar is missin ...
help me please. an dwr error -
kimmking:
the lib-file jdom.jar is missin ...
help me please. an dwr error -
icewubin:
不好意思太长了,没时间看。你画个UML图可以更清楚点,从你讲的 ...
如何重用实现类中的共用方法? -
sclsch:
我的意思是
InterfaceA extends Interf ...
如何重用实现类中的共用方法? -
icewubin:
sclsch 写道public interface CityD ...
如何重用实现类中的共用方法?
文章列表
hello
I deploy a web project using dwr, it seems no error , but when I access the http://localhost:8080/sclBBS/regist.jsp page, the js does not work and the console show the messages below:
信息: Server startup in 28639 ms
2008-08-13 10:40:33,773 INFO [org.directwebremoting.impl.StartupUtil ...
- 2008-08-13 18:37
- 浏览 1083
- 评论(2)
我的类结构的这样的.
public interface CommonUploadService {
public void add(List excelDatalist);
public List sameList(List excelDatalist) throws UploadException;
public void deleteSame(List excelDataList);
public void setLog(String userName,String fileName) throws UploadException;
}
public i ...
学习卡有出库的操作,就是从库房提取一批卡并发送给代理商的过程。
我有一个困惑,因为出库要记录:哪个代理商在哪个时间代理了哪个号段的学习卡。
有两种方法:
1.
是在学习卡实体Card上加一个字段表示代理商Agent,那么这个Card,还要增加代理时间字段AgentTime
Card表:
id, ... Agent,AgetnTime
2.
另设计一张表(出库记录表),
CardCheckout表
id, ... CardArea(卡的号段比如1-1000),Agent,AgentTime
如果按照一个Card只能出库一次的说活,也就是Card和出库是1:1的,就应该在Card上加一个字段 ...