资源简介
中国移动信息管理系统 jsp java
代码片段和文件信息
package business;
//实现业务层操作员(管理员)管理系统接口
import org.apache.commons.lang.RandomStringUtils;
import dao.IAdminOperatorDAO;
import po.*;
public class AdminOperatorImp implements IAdminOperator {
// 数据访问层操作员(管理员)管理对象由spring注入(托管)
private IAdminOperatorDAO adminoperator;
//增加号段
public String addNumber(String nbtypeString StartMobile String endMobile) {
String message=““;
//先取出手机号段的前两个字符
String before=StartMobile.substring(02);
//将后9个字符转为数值型
int a1=Integer.parseInt(StartMobile.substring(211));
int a2=Integer.parseInt(endMobile.substring(211));
int all=0;//用于统计生成号码个数
for(int i=a1;i<=a2;i++){//循环增加手机号吗
if(!adminoperator.isMobileExist(before+i)){
//生成卡号
String cardnumber=RandomStringUtils.randomNumeric(20);
while(adminoperator.isCardExist(cardnumber)){//如果卡号已存在,重新生成
cardnumber=RandomStringUtils.randomNumeric(20);
}
//构造手机号码对象
Tmobiles mobile=new Tmobiles();
mobile.setCardNumber(cardnumber);
mobile.setMobileType(nbtype);
mobile.setIsAvailable(“Y“);
mobile.setMobileNumber(before+i);
if(adminoperator.addNumber(mobile)){//调用底层方法增加手机号
all++;//增加成功个数加1
}
}
}
message=“共添加手机号“+all+“个!“;
return message;
}
//增加操作员
public String addOperator(Toperator operator) {
String message=““;
if(!adminoperator.isOperatorExist(operator)){//先判操作号是否存在
if(adminoperator.addOperator(operator)){//增加操作员
message=“新增操作员成功!“;
}else{
message=“新增操作员失败!请检查后重新添加!“;
}
}else{
message=“你所增加的操作员已存在!“;
}
return message;
}
//业务收费设置
public String editChargeRule(String ruleString[] chargestr) {
String message=““;
if(adminoperator.delAllChargeRule(rule)){//变更业务前先删除原有业务
for(int i=0;i TchargeRule myrule=new TchargeRule();
TchargeRuleId id=new TchargeRuleId();
Tcharge charge=new Tcharge();
charge.setChargeCode(chargestr[i]);
id.setFuncId(rule);
id.setFuncName(“开户“);
id.setTcharge(charge);
myrule.setId(id);
myrule.setTcharge(charge);
//System.out.println(chargestr[i]);
if(!adminoperator.addChargeRule(myrule)){//增加收费项目
message=“业务收费设置失败“;
}else{
message=“业务收费设置成功“;
}
}
}else{
message=“删除原记录过程中出现错误!“;
}
return message;
}
//设置细项费用
public String setMoney(Tcharge charge) {
String message=““;
if(adminoperator.setMoney(charge)){//设置收费细项
message=“收费细项设置成功!“;
}else{
message=“收费细项设置失败!请重新设置!“;
}
return message;
}
// get/set方法在spring注入时使用
public IAdminOperatorDAO getAdminoperator() {
return adminoperator;
}
public void setAdminoperator(IAdminOperatorDAO adminoperator) {
this.adminoperator = adminoperator;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1448 2006-11-01 17:20 中国移动信息管理系统\chinamobile\.classpath
文件 447 2006-11-02 22:18 中国移动信息管理系统\chinamobile\.myhibernatedata
文件 314 2006-10-31 17:36 中国移动信息管理系统\chinamobile\.myme
文件 246 2006-11-01 14:13 中国移动信息管理系统\chinamobile\.mystrutsdata
文件 1722 2006-11-01 14:31 中国移动信息管理系统\chinamobile\.project
文件 283 2006-10-31 18:05 中国移动信息管理系统\chinamobile\.springBeans
文件 4600 2006-11-05 15:05 中国移动信息管理系统\chinamobile\cnc.sql
文件 104 2005-10-09 08:37 中国移动信息管理系统\chinamobile\images\Arrow1.gif
文件 43 2005-10-09 08:37 中国移动信息管理系统\chinamobile\images\blank(1).gif
文件 43 2005-10-09 08:35 中国移动信息管理系统\chinamobile\images\blank.gif
文件 35377 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_01.gif
文件 8322 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_02.gif
文件 5063 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_03.gif
文件 54415 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_04.gif
文件 3437 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_05.gif
文件 15961 2005-10-09 23:19 中国移动信息管理系统\chinamobile\images\index_06.gif
文件 8053 2005-10-09 23:50 中国移动信息管理系统\chinamobile\images\logo.gif
文件 6403 2005-10-10 00:21 中国移动信息管理系统\chinamobile\images\pic01.gif
文件 6359 2005-10-10 00:27 中国移动信息管理系统\chinamobile\images\pic02.gif
文件 6469 2005-10-10 00:27 中国移动信息管理系统\chinamobile\images\pic03.gif
文件 6911 2005-10-10 00:28 中国移动信息管理系统\chinamobile\images\pic04.gif
文件 6669 2005-10-10 00:29 中国移动信息管理系统\chinamobile\images\pic05.gif
文件 43 2005-10-09 23:10 中国移动信息管理系统\chinamobile\images\spacer.gif
文件 50688 2006-01-24 18:31 中国移动信息管理系统\chinamobile\images\Thumbs.db
文件 2176 2006-11-01 16:02 中国移动信息管理系统\chinamobile\index.html
文件 1196109 2006-10-31 18:05 中国移动信息管理系统\chinamobile\lib\classes12.jar
文件 39 2006-10-31 13:40 中国移动信息管理系统\chinamobile\me
文件 8607 2006-11-03 00:39 中国移动信息管理系统\chinamobile\saveInfo.jsp
文件 2121 2006-11-04 08:10 中国移动信息管理系统\chinamobile\src\applicationContext.xm
文件 3074 2006-11-03 11:02 中国移动信息管理系统\chinamobile\src\business\AdminOperatorImp.java
............此处省略169个文件信息
- 上一篇:基本Android平台短信项目
- 下一篇:java ee个人相册管理系统
相关资源
- java ee个人相册管理系统
- JAVA大作业通讯录
- java标准化考试系统
- 基于java开发房产销售系统毕业设计论
- 模拟手机通信录管理系统JAVA
- jsp酒店管理系统源码
- Java卡应用密钥管理系统的设计与实现
- java汇率转换小应用程序有美元
- 320X240Java小游戏
- 《Java设计模式》课后习题参考答案
- java中编写车辆管理系统
- 酒店管理系统课程设计全部源码java工
- 基于JavaWeb的网上书店的设计与实现毕
- JAVA JSP MYSQL电影播放网站
- Java+MySQL学生兼职网的设计与实现源码
- Core Java Volume I--Fundamentals 10th Edition.
- 基于JAVA的旅游网站源码
- JSP+MYSQL电影订票系统
- JAVA089JSP企业车辆管理系统.rar
- JAVA微商城前后台源码
- 2016黑马程序员java基础班阶段考试测试
- Java仿微信飞机大战--Swing界面
- JAVA局域网聊天系统微仿QQ
- jsp+mysql实现的博客系统
- JAVA写的信用卡管理系统
- 自行车租赁系统源码JaveWeb版
- java 超级简易java图书管理系统源码
- 微信支付jssdk,java版
- 酒店点菜系统源代码java
- Java 身份证号查询
评论
共有 条评论