在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#网络编程 → 基于.net core的飞机订票系统

基于.net core的飞机订票系统

C#网络编程

下载此实例
  • 开发语言:C#
  • 实例大小:38.31M
  • 下载次数:94
  • 浏览次数:386
  • 发布时间:2022-06-28
  • 实例类别:C#网络编程
  • 发 布 人:达瓦达
  • 文件格式:.zip
  • 所需积分:2
 相关标签: .NET Core NET Core .NET Core NET

实例介绍

【实例简介】基于.net core的飞机订票系统

【实例截图】

from clipboard

【核心代码】

.
├── FJDPXT.mdf
├── FJDPXT202002
│   ├── DB
│   │   ├── FJDPXT.mdf
│   │   └── FJDPXT_log.ldf
│   ├── FJDPXT202002
│   │   ├── App_Start
│   │   │   ├── FilterConfig.cs
│   │   │   └── RouteConfig.cs
│   │   ├── Areas
│   │   │   ├── ElectronicsTicket
│   │   │   │   ├── Controllers
│   │   │   │   │   ├── AgentTicketQueryController.cs
│   │   │   │   │   ├── TicketHistoryQueryController.cs
│   │   │   │   │   ├── TicketModifyController.cs
│   │   │   │   │   └── TicketPrintController.cs
│   │   │   │   ├── ElectronicsTicketAreaRegistration.cs
│   │   │   │   └── Views
│   │   │   │       ├── AgentTicketQuery
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── TicketHistoryQuery
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── TicketModify
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   ├── SelectFlightPage.cshtml
│   │   │   │       │   ├── showPNRPage.cshtml
│   │   │   │       │   └── showTicketInfor.cshtml
│   │   │   │       ├── TicketPrint
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   └── TicketPrint.cshtml
│   │   │   │       └── web.config
│   │   │   ├── OthersMaintenance
│   │   │   │   ├── Controllers
│   │   │   │   │   ├── ExportARdataController.cs
│   │   │   │   │   ├── ExportLKdataController.cs
│   │   │   │   │   ├── FlightMaintainController.cs
│   │   │   │   │   ├── IssuanceTicketController.cs
│   │   │   │   │   ├── ModifyPasswordController.cs
│   │   │   │   │   ├── OpenOffNumberController.cs
│   │   │   │   │   └── UserDataMaintainController.cs
│   │   │   │   ├── OthersMaintenanceAreaRegistration.cs
│   │   │   │   └── Views
│   │   │   │       ├── ExportARdata
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── ExportLKdata
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── FlightMaintain
│   │   │   │       │   ├── CreateFlightAuto.cshtml
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── IssuanceTicket
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── ModifyPassword
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── OpenOffNumber
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── UserDataMaintain
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   └── UserList.cshtml
│   │   │   │       └── web.config
│   │   │   ├── PNR
│   │   │   │   ├── Controllers
│   │   │   │   │   ├── PNRAppointmentController.cs
│   │   │   │   │   ├── PNRQueryController.cs
│   │   │   │   │   ├── SelectOrderController.cs
│   │   │   │   │   └── StrokeDisplayController.cs
│   │   │   │   ├── PNRAreaRegistration.cs
│   │   │   │   └── Views
│   │   │   │       ├── PNRAppointment
│   │   │   │       │   ├── EnterInfoPage.cshtml
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   ├── IssuanceTicketResult.cshtml
│   │   │   │       │   ├── PnrInfoConfirm.cshtml
│   │   │   │       │   └── SelectFlightPage.cshtml
│   │   │   │       ├── PNRQuery
│   │   │   │       │   ├── AddPassenger.cshtml
│   │   │   │       │   ├── CopyPNR.cshtml
│   │   │   │       │   ├── EditOtherInfo.cshtml
│   │   │   │       │   ├── EditPassengerName.cshtml
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   ├── PartIssuanceTicket.cshtml
│   │   │   │       │   ├── PnrInfoShow.cshtml
│   │   │   │       │   ├── RemovePassenger.cshtml
│   │   │   │       │   ├── RemoveSegements.cshtml
│   │   │   │       │   └── SplitPNR.cshtml
│   │   │   │       ├── SelectOrder
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   ├── OrderInfoShow.cshtml
│   │   │   │       │   └── PnrInfoShow.cshtml
│   │   │   │       ├── StrokeDisplay
│   │   │   │       │   ├── Index.cshtml
│   │   │   │       │   └── StrokeDisplay.cshtml
│   │   │   │       └── web.config
│   │   │   ├── StatisticalManagement
│   │   │   │   ├── Controllers
│   │   │   │   │   ├── PaymentStatisticsController.cs
│   │   │   │   │   ├── SalesReportStatisticsController.cs
│   │   │   │   │   ├── TDQstatisticsController.cs
│   │   │   │   │   └── VirAccountQueryController.cs
│   │   │   │   ├── StatisticalManagementAreaRegistration.cs
│   │   │   │   └── Views
│   │   │   │       ├── PaymentStatistics
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── SalesReportStatistics
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── TDQstatistics
│   │   │   │       │   ├── DataPage.cshtml
│   │   │   │       │   └── Index.cshtml
│   │   │   │       ├── VirAccountQuery
│   │   │   │       │   └── Index.cshtml
│   │   │   │       └── web.config
│   │   │   └── SystemMaintenance
│   │   │       ├── Controllers
│   │   │       │   ├── ClassMaintainController.cs
│   │   │       │   ├── RoleMaintainController.cs
│   │   │       │   ├── TCCMaintainController.cs
│   │   │       │   └── TicketNumMaintainController.cs
│   │   │       ├── SystemMaintenanceAreaRegistration.cs
│   │   │       └── Views
│   │   │           ├── ClassMaintain
│   │   │           │   └── Index.cshtml
│   │   │           ├── RoleMaintain
│   │   │           │   ├── Index.cshtml
│   │   │           │   ├── InsertRole.cshtml
│   │   │           │   └── UpdateRole.cshtml
│   │   │           ├── TCCMaintain
│   │   │           │   └── Index.cshtml
│   │   │           ├── TicketNumMaintain
│   │   │           │   └── Index.cshtml
│   │   │           └── web.config
│   │   ├── Common
│   │   │   ├── AESEncryptHelper.cs
│   │   │   ├── IDCardHelper  .cs
│   │   │   ├── PNRCodeHelper.cs
│   │   │   └── ValidCodeUtils.cs
│   │   ├── Content
│   │   │   ├── app-assets
│   │   │   │   ├── css
│   │   │   │   │   ├── app.css
│   │   │   │   │   └── app.min.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── feather
│   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   ├── feather.eot
│   │   │   │   │   │   │   ├── feather.svg
│   │   │   │   │   │   │   ├── feather.ttf
│   │   │   │   │   │   │   └── feather.woff
│   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   └── style.min.css
│   │   │   │   │   ├── font-awesome
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── font-awesome.css
│   │   │   │   │   │   │   ├── font-awesome.css.map
│   │   │   │   │   │   │   └── font-awesome.min.css
│   │   │   │   │   │   └── fonts
│   │   │   │   │   │       ├── FontAwesome.otf
│   │   │   │   │   │       ├── fontawesome-webfont.eot
│   │   │   │   │   │       ├── fontawesome-webfont.svg
│   │   │   │   │   │       ├── fontawesome-webfont.ttf
│   │   │   │   │   │       ├── fontawesome-webfont.woff
│   │   │   │   │   │       └── fontawesome-webfont.woff2
│   │   │   │   │   ├── meteocons
│   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   ├── meteocons.eot
│   │   │   │   │   │   │   ├── meteocons.svg
│   │   │   │   │   │   │   ├── meteocons.ttf
│   │   │   │   │   │   │   └── meteocons.woff
│   │   │   │   │   │   ├── style-origin.css
│   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   └── style.min.css
│   │   │   │   │   ├── simple-line-icons
│   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   ├── Simple-Line-Icons.dev.svg
│   │   │   │   │   │   │   ├── Simple-Line-Icons.eot
│   │   │   │   │   │   │   ├── Simple-Line-Icons.svg
│   │   │   │   │   │   │   ├── Simple-Line-Icons.ttf
│   │   │   │   │   │   │   └── Simple-Line-Icons.woff
│   │   │   │   │   │   ├── style-origin.css
│   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   └── style.min.css
│   │   │   │   │   └── weathericons
│   │   │   │   │       ├── weathericons-regular-webfont.eot
│   │   │   │   │       ├── weathericons-regular-webfont.svg
│   │   │   │   │       ├── weathericons-regular-webfont.ttf
│   │   │   │   │       ├── weathericons-regular-webfont.woff
│   │   │   │   │       └── weathericons-regular-webfont.woff2
│   │   │   │   ├── img
│   │   │   │   │   ├── logo.png
│   │   │   │   │   ├── portrait
│   │   │   │   │   │   ├── medium
│   │   │   │   │   │   │   ├── avatar-m-1.jpg
│   │   │   │   │   │   │   ├── avatar-m-10.jpg
│   │   │   │   │   │   │   ├── avatar-m-11.jpg
│   │   │   │   │   │   │   ├── avatar-m-12.jpg
│   │   │   │   │   │   │   ├── avatar-m-13.jpg
│   │   │   │   │   │   │   ├── avatar-m-14.jpg
│   │   │   │   │   │   │   ├── avatar-m-15.jpg
│   │   │   │   │   │   │   ├── avatar-m-16.jpg
│   │   │   │   │   │   │   ├── avatar-m-17.jpg
│   │   │   │   │   │   │   ├── avatar-m-18.jpg
│   │   │   │   │   │   │   ├── avatar-m-19.jpg
│   │   │   │   │   │   │   ├── avatar-m-2.jpg
│   │   │   │   │   │   │   ├── avatar-m-20.jpg
│   │   │   │   │   │   │   ├── avatar-m-21.jpg
│   │   │   │   │   │   │   ├── avatar-m-22.jpg
│   │   │   │   │   │   │   ├── avatar-m-23.jpg
│   │   │   │   │   │   │   ├── avatar-m-24.jpg
│   │   │   │   │   │   │   ├── avatar-m-25.jpg
│   │   │   │   │   │   │   ├── avatar-m-26.jpg
│   │   │   │   │   │   │   ├── avatar-m-27.jpg
│   │   │   │   │   │   │   ├── avatar-m-28.jpg
│   │   │   │   │   │   │   ├── avatar-m-3.jpg
│   │   │   │   │   │   │   ├── avatar-m-4.jpg
│   │   │   │   │   │   │   ├── avatar-m-5.jpg
│   │   │   │   │   │   │   ├── avatar-m-6.jpg
│   │   │   │   │   │   │   ├── avatar-m-7.jpg
│   │   │   │   │   │   │   ├── avatar-m-8.jpg
│   │   │   │   │   │   │   └── avatar-m-9.jpg
│   │   │   │   │   │   └── small
│   │   │   │   │   │       ├── avatar-s-1.jpg
│   │   │   │   │   │       ├── avatar-s-10.jpg
│   │   │   │   │   │       ├── avatar-s-11.jpg
│   │   │   │   │   │       ├── avatar-s-12.jpg
│   │   │   │   │   │       ├── avatar-s-13.jpg
│   │   │   │   │   │       ├── avatar-s-14.jpg
│   │   │   │   │   │       ├── avatar-s-15.jpg
│   │   │   │   │   │       ├── avatar-s-16.jpg
│   │   │   │   │   │       ├── avatar-s-17.jpg
│   │   │   │   │   │       ├── avatar-s-18.jpg
│   │   │   │   │   │       ├── avatar-s-19.jpg
│   │   │   │   │   │       ├── avatar-s-2.jpg
│   │   │   │   │   │       ├── avatar-s-20.jpg
│   │   │   │   │   │       ├── avatar-s-21.jpg
│   │   │   │   │   │       ├── avatar-s-22.jpg
│   │   │   │   │   │       ├── avatar-s-23.jpg
│   │   │   │   │   │       ├── avatar-s-24.jpg
│   │   │   │   │   │       ├── avatar-s-25.jpg
│   │   │   │   │   │       ├── avatar-s-26.jpg
│   │   │   │   │   │       ├── avatar-s-27.jpg
│   │   │   │   │   │       ├── avatar-s-28.jpg
│   │   │   │   │   │       ├── avatar-s-3.jpg
│   │   │   │   │   │       ├── avatar-s-4.jpg
│   │   │   │   │   │       ├── avatar-s-5.jpg
│   │   │   │   │   │       ├── avatar-s-6.jpg
│   │   │   │   │   │       ├── avatar-s-7.jpg
│   │   │   │   │   │       ├── avatar-s-8.jpg
│   │   │   │   │   │       └── avatar-s-9.jpg
│   │   │   │   │   └── sidebar-bg
│   │   │   │   │       ├── 01.jpg
│   │   │   │   │       ├── 02.jpg
│   │   │   │   │       ├── 03.jpg
│   │   │   │   │       ├── 04.jpg
│   │   │   │   │       ├── 05.jpg
│   │   │   │   │       ├── 06.jpg
│   │   │   │   │       ├── 07.jpg
│   │   │   │   │       └── 08.jpg
│   │   │   │   ├── js
│   │   │   │   │   ├── app-sidebar.js
│   │   │   │   │   ├── createSelect.js
│   │   │   │   │   └── notification-sidebar.js
│   │   │   │   └── vendors
│   │   │   │       └── js
│   │   │   │           ├── core
│   │   │   │           │   ├── bootstrap.min.js
│   │   │   │           │   ├── jquery-3.2.1.min.js
│   │   │   │           │   ├── jquery-3.3.1.min.js
│   │   │   │           │   └── popper.min.js
│   │   │   │           └── perfect-scrollbar.jquery.min.js
│   │   │   ├── bootstrap-4.1.3-dist
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap-grid.css
│   │   │   │   │   ├── bootstrap-grid.css.map
│   │   │   │   │   ├── bootstrap-grid.min.css
│   │   │   │   │   ├── bootstrap-grid.min.css.map
│   │   │   │   │   ├── bootstrap-reboot.css
│   │   │   │   │   ├── bootstrap-reboot.css.map
│   │   │   │   │   ├── bootstrap-reboot.min.css
│   │   │   │   │   ├── bootstrap-reboot.min.css.map
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   └── bootstrap.min.css.map
│   │   │   │   └── js
│   │   │   │       ├── bootstrap.bundle.js
│   │   │   │       ├── bootstrap.bundle.js.map
│   │   │   │       ├── bootstrap.bundle.min.js
│   │   │   │       ├── bootstrap.bundle.min.js.map
│   │   │   │       ├── bootstrap.js
│   │   │   │       ├── bootstrap.js.map
│   │   │   │       ├── bootstrap.min.js
│   │   │   │       └── bootstrap.min.js.map
│   │   │   ├── css
│   │   │   │   ├── ElectronicsTicket.css
│   │   │   │   ├── Login.css
│   │   │   │   ├── Main.css
│   │   │   │   ├── OthersMaintenance.css
│   │   │   │   ├── SystemMaintance.css
│   │   │   │   └── systemMaintenance.css
│   │   │   ├── images
│   │   │   │   ├── log.png
│   │   │   │   └── loginbg.jpg
│   │   │   ├── js
│   │   │   │   ├── createSelect.js
│   │   │   │   ├── customfunction.js
│   │   │   │   ├── jQuery.Hz2Py-min.js
│   │   │   │   ├── jquery-3.2.1.min.js
│   │   │   │   └── xm-select.js
│   │   │   └── layui
│   │   │       ├── css
│   │   │       │   ├── layui.css
│   │   │       │   ├── layui.mobile.css
│   │   │       │   └── modules
│   │   │       │       ├── code.css
│   │   │       │       ├── laydate
│   │   │       │       │   └── default
│   │   │       │       │       └── laydate.css
│   │   │       │       └── layer
│   │   │       │           └── default
│   │   │       │               ├── icon-ext.png
│   │   │       │               ├── icon.png
│   │   │       │               ├── layer.css
│   │   │       │               ├── loading-0.gif
│   │   │       │               ├── loading-1.gif
│   │   │       │               └── loading-2.gif
│   │   │       ├── font
│   │   │       │   ├── iconfont.eot
│   │   │       │   ├── iconfont.svg
│   │   │       │   ├── iconfont.ttf
│   │   │       │   ├── iconfont.woff
│   │   │       │   └── iconfont.woff2
│   │   │       ├── images
│   │   │       │   └── face
│   │   │       │       ├── 0.gif
│   │   │       │       ├── 1.gif
│   │   │       │       ├── 10.gif
│   │   │       │       ├── 11.gif
│   │   │       │       ├── 12.gif
│   │   │       │       ├── 13.gif
│   │   │       │       ├── 14.gif
│   │   │       │       ├── 15.gif
│   │   │       │       ├── 16.gif
│   │   │       │       ├── 17.gif
│   │   │       │       ├── 18.gif
│   │   │       │       ├── 19.gif
│   │   │       │       ├── 2.gif
│   │   │       │       ├── 20.gif
│   │   │       │       ├── 21.gif
│   │   │       │       ├── 22.gif
│   │   │       │       ├── 23.gif
│   │   │       │       ├── 24.gif
│   │   │       │       ├── 25.gif
│   │   │       │       ├── 26.gif
│   │   │       │       ├── 27.gif
│   │   │       │       ├── 28.gif
│   │   │       │       ├── 29.gif
│   │   │       │       ├── 3.gif
│   │   │       │       ├── 30.gif
│   │   │       │       ├── 31.gif
│   │   │       │       ├── 32.gif
│   │   │       │       ├── 33.gif
│   │   │       │       ├── 34.gif
│   │   │       │       ├── 35.gif
│   │   │       │       ├── 36.gif
│   │   │       │       ├── 37.gif
│   │   │       │       ├── 38.gif
│   │   │       │       ├── 39.gif
│   │   │       │       ├── 4.gif
│   │   │       │       ├── 40.gif
│   │   │       │       ├── 41.gif
│   │   │       │       ├── 42.gif
│   │   │       │       ├── 43.gif
│   │   │       │       ├── 44.gif
│   │   │       │       ├── 45.gif
│   │   │       │       ├── 46.gif
│   │   │       │       ├── 47.gif
│   │   │       │       ├── 48.gif
│   │   │       │       ├── 49.gif
│   │   │       │       ├── 5.gif
│   │   │       │       ├── 50.gif
│   │   │       │       ├── 51.gif
│   │   │       │       ├── 52.gif
│   │   │       │       ├── 53.gif
│   │   │       │       ├── 54.gif
│   │   │       │       ├── 55.gif
│   │   │       │       ├── 56.gif
│   │   │       │       ├── 57.gif
│   │   │       │       ├── 58.gif
│   │   │       │       ├── 59.gif
│   │   │       │       ├── 6.gif
│   │   │       │       ├── 60.gif
│   │   │       │       ├── 61.gif
│   │   │       │       ├── 62.gif
│   │   │       │       ├── 63.gif
│   │   │       │       ├── 64.gif
│   │   │       │       ├── 65.gif
│   │   │       │       ├── 66.gif
│   │   │       │       ├── 67.gif
│   │   │       │       ├── 68.gif
│   │   │       │       ├── 69.gif
│   │   │       │       ├── 7.gif
│   │   │       │       ├── 70.gif
│   │   │       │       ├── 71.gif
│   │   │       │       ├── 8.gif
│   │   │       │       └── 9.gif
│   │   │       ├── lay
│   │   │       │   └── modules
│   │   │       │       ├── carousel.js
│   │   │       │       ├── code.js
│   │   │       │       ├── colorpicker.js
│   │   │       │       ├── element.js
│   │   │       │       ├── flow.js
│   │   │       │       ├── form.js
│   │   │       │       ├── jquery.js
│   │   │       │       ├── laydate.js
│   │   │       │       ├── layedit.js
│   │   │       │       ├── layer.js
│   │   │       │       ├── laypage.js
│   │   │       │       ├── laytpl.js
│   │   │       │       ├── mobile.js
│   │   │       │       ├── rate.js
│   │   │       │       ├── slider.js
│   │   │       │       ├── table.js
│   │   │       │       ├── transfer.js
│   │   │       │       ├── tree.js
│   │   │       │       ├── upload.js
│   │   │       │       └── util.js
│   │   │       ├── layui.all.js
│   │   │       └── layui.js
│   │   ├── Controllers
│   │   │   └── MainController.cs
│   │   ├── Document
│   │   │   ├── ARDataTemplate.xls
│   │   │   ├── userPicture
│   │   │   │   ├── 202008010031591077_21bc61f9-d3ab-4a1d-bd9d-7ce72f77680e.jpg
│   │   │   │   ├── 202008010032392882_b9bc7aec-f698-4c5b-bf5d-4ec2d277a966.jpg
│   │   │   │   ├── 202008010039398667_232e3bb4-34fe-40bb-83e5-589cd8eba2dd.jpg
│   │   │   │   ├── 202008010040108780_f8e28027-4130-4e1a-a2fb-95736e2883ea.jpg
│   │   │   │   ├── 202008010101112604_e7abb27e-9077-4e73-88e1-599d9a49eb76.jpg
│   │   │   │   ├── 202008030301428458_6399e4fa-9c36-4cb2-a6ba-99c6192a0eb2.jpg
│   │   │   │   ├── 202008030302103659_618195fb-c418-4dab-b298-fdcc50209a18.jpg
│   │   │   │   ├── 202008030302340073_62405fe8-fd00-4571-a811-76ebb39a6e31.jpg
│   │   │   │   └── 202008030306451218_14f8e7f2-c90e-45e2-bf32-e1ac4c5eed50.jpg
│   │   │   ├── 用户导入模板.xls
│   │   │   ├── 用户导入模板空行.xls
│   │   │   ├── 用户导入模板数据有误模板.xls
│   │   │   └── 用户导入模板第一个工作表没有数据.xls
│   │   ├── EntityClass
│   │   │   ├── ETicketVo.cs
│   │   │   ├── ExportARdataVo.cs
│   │   │   ├── FlightCabinVo.cs
│   │   │   ├── FlightCreateResult.cs
│   │   │   ├── FlightVo.cs
│   │   │   ├── LayuiTableData.cs
│   │   │   ├── LayuiTablePage.cs
│   │   │   ├── ModuleVo.cs
│   │   │   ├── OrderVo.cs
│   │   │   ├── PNRTicketingVo.cs
│   │   │   ├── PNRVo.cs
│   │   │   ├── PassengerVo.cs
│   │   │   ├── PaymentStatisticsVo.cs
│   │   │   ├── PermissionVo.cs
│   │   │   ├── ReturnJson.cs
│   │   │   ├── SegmentVo.cs
│   │   │   ├── Select.cs
│   │   │   ├── TicketInfo.cs
│   │   │   ├── TicketVo.cs
│   │   │   ├── TransactionRecordVo.cs
│   │   │   ├── UserVo.cs
│   │   │   ├── VirtualAccountVo.cs
│   │   │   └── XmSelect.cs
│   │   ├── FJDPXT202002.csproj
│   │   ├── FJDPXT202002.csproj.user
│   │   ├── Filter
│   │   │   └── PermissionFilter.cs
│   │   ├── FlightCabinInfo.cs
│   │   ├── Global.asax
│   │   ├── Global.asax.cs
│   │   ├── Models
│   │   │   ├── B_ETicket.cs
│   │   │   ├── B_ETicketChange.cs
│   │   │   ├── B_ETicketInvalid.cs
│   │   │   ├── B_FlightChange.cs
│   │   │   ├── B_Order.cs
│   │   │   ├── B_PNR.cs
│   │   │   ├── B_PNROtherInfo.cs
│   │   │   ├── B_PNRPassenger.cs
│   │   │   ├── B_PNRSegment.cs
│   │   │   ├── B_PNRTeam.cs
│   │   │   ├── B_PNRTicketing.cs
│   │   │   ├── B_SpecialTeamApplication.cs
│   │   │   ├── B_SpecialTeamApproval.cs
│   │   │   ├── B_TicketRefund.cs
│   │   │   ├── B_TransactionRecord.cs
│   │   │   ├── FJDPXT.Context.cs
│   │   │   ├── FJDPXT.Context.tt
│   │   │   ├── FJDPXT.Designer.cs
│   │   │   ├── FJDPXT.cs
│   │   │   ├── FJDPXT.edmx
│   │   │   ├── FJDPXT.edmx.diagram
│   │   │   ├── FJDPXT.tt
│   │   │   ├── S_Airport.cs
│   │   │   ├── S_Bulletin.cs
│   │   │   ├── S_CabinType.cs
│   │   │   ├── S_CertificatesType.cs
│   │   │   ├── S_ETicketStatus.cs
│   │   │   ├── S_Flight.cs
│   │   │   ├── S_FlightCabin.cs
│   │   │   ├── S_FrequentPassenger.cs
│   │   │   ├── S_InvoiceStatus.cs
│   │   │   ├── S_Module.cs
│   │   │   ├── S_PassengerType.cs
│   │   │   ├── S_Permission.cs
│   │   │   ├── S_PlanType.cs
│   │   │   ├── S_Ticket.cs
│   │   │   ├── S_User.cs
│   │   │   ├── S_UserGroup.cs
│   │   │   ├── S_UserType.cs
│   │   │   └── S_VirtualAccount.cs
│   │   ├── Plugins
│   │   │   ├── layui
│   │   │   │   ├── css
│   │   │   │   │   ├── layui.css
│   │   │   │   │   ├── layui.mobile.css
│   │   │   │   │   └── modules
│   │   │   │   │       ├── code.css
│   │   │   │   │       ├── laydate
│   │   │   │   │       │   └── default
│   │   │   │   │       │       └── laydate.css
│   │   │   │   │       └── layer
│   │   │   │   │           └── default
│   │   │   │   │               ├── icon-ext.png
│   │   │   │   │               ├── icon.png
│   │   │   │   │               ├── layer.css
│   │   │   │   │               ├── loading-0.gif
│   │   │   │   │               ├── loading-1.gif
│   │   │   │   │               └── loading-2.gif
│   │   │   │   ├── font
│   │   │   │   │   ├── iconfont.eot
│   │   │   │   │   ├── iconfont.svg
│   │   │   │   │   ├── iconfont.ttf
│   │   │   │   │   └── iconfont.woff
│   │   │   │   ├── images
│   │   │   │   │   └── face
│   │   │   │   │       ├── 0.gif
│   │   │   │   │       ├── 1.gif
│   │   │   │   │       ├── 10.gif
│   │   │   │   │       ├── 11.gif
│   │   │   │   │       ├── 12.gif
│   │   │   │   │       ├── 13.gif
│   │   │   │   │       ├── 14.gif
│   │   │   │   │       ├── 15.gif
│   │   │   │   │       ├── 16.gif
│   │   │   │   │       ├── 17.gif
│   │   │   │   │       ├── 18.gif
│   │   │   │   │       ├── 19.gif
│   │   │   │   │       ├── 2.gif
│   │   │   │   │       ├── 20.gif
│   │   │   │   │       ├── 21.gif
│   │   │   │   │       ├── 22.gif
│   │   │   │   │       ├── 23.gif
│   │   │   │   │       ├── 24.gif
│   │   │   │   │       ├── 25.gif
│   │   │   │   │       ├── 26.gif
│   │   │   │   │       ├── 27.gif
│   │   │   │   │       ├── 28.gif
│   │   │   │   │       ├── 29.gif
│   │   │   │   │       ├── 3.gif
│   │   │   │   │       ├── 30.gif
│   │   │   │   │       ├── 31.gif
│   │   │   │   │       ├── 32.gif
│   │   │   │   │       ├── 33.gif
│   │   │   │   │       ├── 34.gif
│   │   │   │   │       ├── 35.gif
│   │   │   │   │       ├── 36.gif
│   │   │   │   │       ├── 37.gif
│   │   │   │   │       ├── 38.gif
│   │   │   │   │       ├── 39.gif
│   │   │   │   │       ├── 4.gif
│   │   │   │   │       ├── 40.gif
│   │   │   │   │       ├── 41.gif
│   │   │   │   │       ├── 42.gif
│   │   │   │   │       ├── 43.gif
│   │   │   │   │       ├── 44.gif
│   │   │   │   │       ├── 45.gif
│   │   │   │   │       ├── 46.gif
│   │   │   │   │       ├── 47.gif
│   │   │   │   │       ├── 48.gif
│   │   │   │   │       ├── 49.gif
│   │   │   │   │       ├── 5.gif
│   │   │   │   │       ├── 50.gif
│   │   │   │   │       ├── 51.gif
│   │   │   │   │       ├── 52.gif
│   │   │   │   │       ├── 53.gif
│   │   │   │   │       ├── 54.gif
│   │   │   │   │       ├── 55.gif
│   │   │   │   │       ├── 56.gif
│   │   │   │   │       ├── 57.gif
│   │   │   │   │       ├── 58.gif
│   │   │   │   │       ├── 59.gif
│   │   │   │   │       ├── 6.gif
│   │   │   │   │       ├── 60.gif
│   │   │   │   │       ├── 61.gif
│   │   │   │   │       ├── 62.gif
│   │   │   │   │       ├── 63.gif
│   │   │   │   │       ├── 64.gif
│   │   │   │   │       ├── 65.gif
│   │   │   │   │       ├── 66.gif
│   │   │   │   │       ├── 67.gif
│   │   │   │   │       ├── 68.gif
│   │   │   │   │       ├── 69.gif
│   │   │   │   │       ├── 7.gif
│   │   │   │   │       ├── 70.gif
│   │   │   │   │       ├── 71.gif
│   │   │   │   │       ├── 8.gif
│   │   │   │   │       └── 9.gif
│   │   │   │   ├── lay
│   │   │   │   │   └── modules
│   │   │   │   │       ├── carousel.js
│   │   │   │   │       ├── code.js
│   │   │   │   │       ├── colorpicker.js
│   │   │   │   │       ├── element.js
│   │   │   │   │       ├── flow.js
│   │   │   │   │       ├── form.js
│   │   │   │   │       ├── jquery.js
│   │   │   │   │       ├── laydate.js
│   │   │   │   │       ├── layedit.js
│   │   │   │   │       ├── layer.js
│   │   │   │   │       ├── laypage.js
│   │   │   │   │       ├── laytpl.js
│   │   │   │   │       ├── mobile.js
│   │   │   │   │       ├── rate.js
│   │   │   │   │       ├── slider.js
│   │   │   │   │       ├── table.js
│   │   │   │   │       ├── tree.js
│   │   │   │   │       ├── upload.js
│   │   │   │   │       └── util.js
│   │   │   │   ├── layui.all.js
│   │   │   │   └── layui.js
│   │   │   └── pinyin.js
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Views
│   │   │   ├── Main
│   │   │   │   ├── Login.cshtml
│   │   │   │   ├── Main.cshtml
│   │   │   │   └── NoPermission.cshtml
│   │   │   └── web.config
│   │   ├── Web.Debug.config
│   │   ├── Web.Release.config
│   │   ├── Web.config
│   │   ├── bin
│   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   ├── EntityFramework.dll
│   │   │   ├── EntityFramework.xml
│   │   │   ├── FJDPXT202002.dll
│   │   │   ├── FJDPXT202002.dll.config
│   │   │   ├── FJDPXT202002.pdb
│   │   │   ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│   │   │   ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│   │   │   ├── Microsoft.Web.Infrastructure.dll
│   │   │   ├── NPOI.dll
│   │   │   ├── System.Web.Helpers.dll
│   │   │   ├── System.Web.Helpers.xml
│   │   │   ├── System.Web.Mvc.dll
│   │   │   ├── System.Web.Mvc.xml
│   │   │   ├── System.Web.Razor.dll
│   │   │   ├── System.Web.Razor.xml
│   │   │   ├── System.Web.Webpages.Deployment.dll
│   │   │   ├── System.Web.Webpages.Deployment.xml
│   │   │   ├── System.Web.Webpages.Razor.dll
│   │   │   ├── System.Web.Webpages.Razor.xml
│   │   │   ├── System.Web.Webpages.dll
│   │   │   ├── System.Web.Webpages.xml
│   │   │   └── roslyn
│   │   │       ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│   │   │       ├── Microsoft.CSharp.Core.targets
│   │   │       ├── Microsoft.CodeAnalysis.CSharp.dll
│   │   │       ├── Microsoft.CodeAnalysis.VisualBasic.dll
│   │   │       ├── Microsoft.CodeAnalysis.dll
│   │   │       ├── Microsoft.VisualBasic.Core.targets
│   │   │       ├── System.Collections.Immutable.dll
│   │   │       ├── System.Reflection.Metadata.dll
│   │   │       ├── VBCSCompiler.exe
│   │   │       ├── VBCSCompiler.exe.config
│   │   │       ├── csc.exe
│   │   │       └── vbc.exe
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── FJDPXT202002.csproj.FileListAbsolute.txt
│   │   │       ├── FJDPXT202002.csprojResolveAssemblyReference.cache
│   │   │       ├── FJDPXT202002.dll
│   │   │       ├── FJDPXT202002.pdb
│   │   │       ├── TempPE
│   │   │       │   ├── Models.FJDPXT.Designer.cs.dll
│   │   │       │   ├── Models.FJDPXT.cs.dll
│   │   │       │   ├── Models.FJDPXTModel.Designer.cs.dll
│   │   │       │   └── Models.FJDPXTModel.cs.dll
│   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │       └── edmxResourcesToEmbed
│   │   │           └── Models
│   │   │               ├── FJDPXT.csdl
│   │   │               ├── FJDPXT.msl
│   │   │               ├── FJDPXT.ssdl
│   │   │               ├── FJDPXTModel.csdl
│   │   │               ├── FJDPXTModel.msl
│   │   │               └── FJDPXTModel.ssdl
│   │   └── packages.config
│   ├── FJDPXT202002.sln
│   └── packages
│       ├── EntityFramework.6.1.3
│       │   ├── Content
│       │   │   ├── App.config.transform
│       │   │   └── Web.config.transform
│       │   ├── EntityFramework.6.1.3.nupkg
│       │   ├── lib
│       │   │   ├── net40
│       │   │   │   ├── EntityFramework.SqlServer.dll
│       │   │   │   ├── EntityFramework.SqlServer.xml
│       │   │   │   ├── EntityFramework.dll
│       │   │   │   └── EntityFramework.xml
│       │   │   └── net45
│       │   │       ├── EntityFramework.SqlServer.dll
│       │   │       ├── EntityFramework.SqlServer.xml
│       │   │       ├── EntityFramework.dll
│       │   │       └── EntityFramework.xml
│       │   └── tools
│       │       ├── EntityFramework.PowerShell.Utility.dll
│       │       ├── EntityFramework.PowerShell.dll
│       │       ├── EntityFramework.psd1
│       │       ├── EntityFramework.psm1
│       │       ├── about_EntityFramework.help.txt
│       │       ├── init.ps1
│       │       ├── install.ps1
│       │       └── migrate.exe
│       ├── EntityFramework.zh-Hans.6.1.3
│       │   ├── EntityFramework.zh-Hans.6.1.3.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   └── zh-Hans
│       │       │       ├── EntityFramework.resources.dll
│       │       │       └── EntityFramework.xml
│       │       └── net45
│       │           └── zh-Hans
│       │               ├── EntityFramework.resources.dll
│       │               └── EntityFramework.xml
│       ├── Microsoft.AspNet.Mvc.5.2.3
│       │   ├── Content
│       │   │   ├── Web.config.install.xdt
│       │   │   └── Web.config.uninstall.xdt
│       │   ├── Microsoft.AspNet.Mvc.5.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           ├── System.Web.Mvc.dll
│       │           └── System.Web.Mvc.xml
│       ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.3
│       │   ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           └── zh-Hans
│       │               ├── System.Web.Mvc.resources.dll
│       │               └── System.Web.Mvc.xml
│       ├── Microsoft.AspNet.Razor.3.2.3
│       │   ├── Microsoft.AspNet.Razor.3.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           ├── System.Web.Razor.dll
│       │           └── System.Web.Razor.xml
│       ├── Microsoft.AspNet.Razor.zh-Hans.3.2.3
│       │   ├── Microsoft.AspNet.Razor.zh-Hans.3.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           └── zh-Hans
│       │               ├── System.Web.Razor.resources.dll
│       │               └── system.web.razor.xml
│       ├── Microsoft.AspNet.WebPages.3.2.3
│       │   ├── Content
│       │   │   ├── Web.config.install.xdt
│       │   │   └── Web.config.uninstall.xdt
│       │   ├── Microsoft.AspNet.WebPages.3.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           ├── System.Web.Helpers.dll
│       │           ├── System.Web.Helpers.xml
│       │           ├── System.Web.WebPages.Deployment.dll
│       │           ├── System.Web.WebPages.Deployment.xml
│       │           ├── System.Web.WebPages.Razor.dll
│       │           ├── System.Web.WebPages.Razor.xml
│       │           ├── System.Web.WebPages.dll
│       │           └── System.Web.WebPages.xml
│       ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.3
│       │   ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.3.nupkg
│       │   └── lib
│       │       └── net45
│       │           └── zh-Hans
│       │               ├── System.Web.Helpers.resources.dll
│       │               ├── System.Web.WebPages.Deployment.resources.dll
│       │               ├── System.Web.WebPages.Razor.resources.dll
│       │               ├── System.Web.WebPages.resources.dll
│       │               ├── system.web.helpers.xml
│       │               ├── system.web.webpages.deployment.xml
│       │               ├── system.web.webpages.razor.xml
│       │               └── system.web.webpages.xml
│       ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0
│       │   ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg
│       │   ├── build
│       │   │   └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
│       │   ├── content
│       │   │   ├── web.config.install.xdt
│       │   │   └── web.config.uninstall.xdt
│       │   ├── lib
│       │   │   └── net45
│       │   │       ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│       │   │       └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│       │   └── tools
│       │       ├── init.ps1
│       │       └── uninstall.ps1
│       ├── Microsoft.Net.Compilers.1.0.0
│       │   ├── Microsoft.Net.Compilers.1.0.0.nupkg
│       │   ├── ThirdPartyNotices.rtf
│       │   ├── build
│       │   │   └── Microsoft.Net.Compilers.props
│       │   └── tools
│       │       ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│       │       ├── Microsoft.CSharp.Core.targets
│       │       ├── Microsoft.CodeAnalysis.CSharp.dll
│       │       ├── Microsoft.CodeAnalysis.VisualBasic.dll
│       │       ├── Microsoft.CodeAnalysis.dll
│       │       ├── Microsoft.VisualBasic.Core.targets
│       │       ├── System.Collections.Immutable.dll
│       │       ├── System.Reflection.Metadata.dll
│       │       ├── VBCSCompiler.exe
│       │       ├── VBCSCompiler.exe.config
│       │       ├── csc.exe
│       │       └── vbc.exe
│       └── Microsoft.Web.Infrastructure.1.0.0.0
│           ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│           └── lib
│               └── net40
│                   └── Microsoft.Web.Infrastructure.dll
├── FJDPXT_log.ldf
├── 好例子网_ASP.NET飞机订票系统(公众号:程序员小R).zip
└── 文字安装教程.txt

162 directories, 683 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警