🍊作者:北友舰长
🍊简介:从事毕业论文代写,计算机毕业设计定制,Java程序开发,可定制化项目、 项目源码、代码讲解、文档撰写、ppt制作等等
🍅 文末获取源码联系
👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟👇🏻
————————————————
计算机毕业设计项目
机场网上订票管理系统是一个综合性的平台,旨在为乘客提供方便快捷的机票预订服务,同时为机场管理方提供有效的航班和用户信息管理工具。该系统包括个人中心、用户管理、机票信息管理、订票信息管理、机场广告管理和系统管理等模块。通过个人中心,用户可以修改密码和管理个人信息。用户管理模块允许管理员管理用户账户和权限。机票信息管理模块用于管理航班信息,包括添加新航班和修改航班信息。订票信息管理模块允许管理预订信息,包括确认预订和取消预订。机场广告管理模块用于管理网站或应用程序上的广告内容。系统管理模块包括轮播图管理和公告类型管理,用于管理首页轮播图和公告信息。这些功能共同构成了一个完整的机场网上订票管理系统,为乘客和机场管理方提供了高效便捷的服务。
个人中心:
用户管理:
机票信息管理:
订票信息管理:
机场广告管理:
系统管理:
首页:
机票信息:
机场广告:
系统公告:
个人中心:
后台管理:
在线留言:
1.首页:展示机场相关信息,如特色服务、航班动态等,吸引用户浏览和预订机票。

2.用户注册:普通用户注册,才能进行购票和管理自己的机票信息

3.航空公司:可以查看航空公司的机票情况,可以点击收藏和进行购飞机票

4.机场公告: 展示机场或航空公司的广告内容,如特价机票、会员优惠等,吸引用户关注和点击。

5.系统公告:显示机场或航空公司发布的重要公告信息,如航班延误通知、服务变更等,保持用户及时了解最新动态。

6.登录界面:管理员进行登录到系统后台管理的登录界面

7.机票信息:新增机票信息和修改飞机票票价等信息


8.订票信息管理:管理用户的订票信息,包括已预订的航班、座位信息、支付状态等。管理员可以查看和处理订票请求,如确认预订、取消预订等。

9.用户进行购买机票进行支付


/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ChatEntity chat,
HttpServletRequest request){
if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
chat.setUserid((Long)request.getSession().getAttribute("userId"));
}
EntityWrapper<ChatEntity> ew = new EntityWrapper<ChatEntity>();
PageUtils page = chatService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, chat), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ChatEntity chat,
HttpServletRequest request){
if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
chat.setUserid((Long)request.getSession().getAttribute("userId"));
}
EntityWrapper<ChatEntity> ew = new EntityWrapper<ChatEntity>();
PageUtils page = chatService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, chat), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( ChatEntity chat){
EntityWrapper<ChatEntity> ew = new EntityWrapper<ChatEntity>();
ew.allEq(MPUtil.allEQMapPre( chat, "chat"));
return R.ok().put("data", chatService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(ChatEntity chat){
EntityWrapper< ChatEntity> ew = new EntityWrapper< ChatEntity>();
ew.allEq(MPUtil.allEQMapPre( chat, "chat"));
ChatView chatView = chatService.selectView(ew);
return R.ok("查询在线留言成功").put("data", chatView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
ChatEntity chat = chatService.selectById(id);
return R.ok().put("data", chat);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
ChatEntity chat = chatService.selectById(id);
return R.ok().put("data", chat);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ChatEntity chat, HttpServletRequest request){
chat.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(chat);
if(StringUtils.isNotBlank(chat.getAsk())) {
chatService.updateForSet("isreply=0", new EntityWrapper<ChatEntity>().eq("userid", request.getSession().getAttribute("userId")));
chat.setUserid((Long)request.getSession().getAttribute("userId"));
chat.setIsreply(1);
}
if(StringUtils.isNotBlank(chat.getReply())) {
chatService.updateForSet("isreply=0", new EntityWrapper<ChatEntity>().eq("userid", chat.getUserid()));
chat.setAdminid((Long)request.getSession().getAttribute("userId"));
}
chatService.insert(chat);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ChatEntity chat, HttpServletRequest request){
chat.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(chat);
chat.setUserid((Long)request.getSession().getAttribute("userId"));
if(StringUtils.isNotBlank(chat.getAsk())) {
chatService.updateForSet("isreply=0", new EntityWrapper<ChatEntity>().eq("userid", request.getSession().getAttribute("userId")));
chat.setUserid((Long)request.getSession().getAttribute("userId"));
chat.setIsreply(1);
}
if(StringUtils.isNotBlank(chat.getReply())) {
chatService.updateForSet("isreply=0", new EntityWrapper<ChatEntity>().eq("userid", chat.getUserid()));
chat.setAdminid((Long)request.getSession().getAttribute("userId"));
}
chatService.insert(chat);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody ChatEntity chat, HttpServletRequest request){
//ValidatorUtils.validateEntity(chat);
chatService.updateById(chat);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
chatService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 提醒接口
*/
@RequestMapping("/remind/{columnName}/{type}")
public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
map.put("column", columnName);
map.put("type", type);
if(type.equals("2")) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
Date remindStartDate = null;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindEnd);
remindEndDate = c.getTime();
map.put("remindend", sdf.format(remindEndDate));
}
}
Wrapper<ChatEntity> wrapper = new EntityWrapper<ChatEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = chatService.selectCount(wrapper);
return R.ok().put("count", count);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( DingpiaoxinxiEntity dingpiaoxinxi){
EntityWrapper<DingpiaoxinxiEntity> ew = new EntityWrapper<DingpiaoxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( dingpiaoxinxi, "dingpiaoxinxi"));
return R.ok().put("data", dingpiaoxinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(DingpiaoxinxiEntity dingpiaoxinxi){
EntityWrapper< DingpiaoxinxiEntity> ew = new EntityWrapper< DingpiaoxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( dingpiaoxinxi, "dingpiaoxinxi"));
DingpiaoxinxiView dingpiaoxinxiView = dingpiaoxinxiService.selectView(ew);
return R.ok("查询订票信息成功").put("data", dingpiaoxinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
DingpiaoxinxiEntity dingpiaoxinxi = dingpiaoxinxiService.selectById(id);
return R.ok().put("data", dingpiaoxinxi);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
DingpiaoxinxiEntity dingpiaoxinxi = dingpiaoxinxiService.selectById(id);
return R.ok().put("data", dingpiaoxinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody DingpiaoxinxiEntity dingpiaoxinxi, HttpServletRequest request){
dingpiaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(dingpiaoxinxi);
dingpiaoxinxiService.insert(dingpiaoxinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody DingpiaoxinxiEntity dingpiaoxinxi, HttpServletRequest request){
dingpiaoxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(dingpiaoxinxi);
dingpiaoxinxiService.insert(dingpiaoxinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody DingpiaoxinxiEntity dingpiaoxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(dingpiaoxinxi);
dingpiaoxinxiService.updateById(dingpiaoxinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
dingpiaoxinxiService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
获取项目源码、项目资源以及安装配置视频请点击下方名片进群
毕业设计代做,毕业论文代写请点击下方名片进群
如果大家有任何疑虑,请在下方位置点击名片进群详细咨询。
👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻