> 文档中心 > 尚医通目录结构--细分版

尚医通目录结构--细分版

yygh-parent根目录

    common公共模块父节点
        common-util公共工具类
            exception
                GlobalExceptionHandler 全局异常处理类Handler
                YyghException 自定义全局异常

            helper
                JwtHelper Json Web Token,认证帮助类
            result
                Result API统一返回结果封装类
                ResultCodeEnum API统一返回结果状态信息枚举类

            utils
                AuthContextHolder 从Header获取当前用户工具类  
        rabbit-util业务封装RabbitMQ
            config
                MqConfig
            constant
                MqConst
            service
                RabbitService
        service-util服务工具类
            config
                MyBatisPlusConfig
                RedisConfig
                Swagger2Config

            handler
                CommonMetaObjectHandler
            helper
                HttpRequestHelper
            utils
                HttpUtil
                MD5

         
    hospital-manage医院接口模拟端(已开发,直接使用)
     
    model实体类
        enums
            AuthStatusEnum
            DictEnum
            OrderStatusEnum
            PaymentStatusEnum
            PaymentTypeEnum
            RefundStatusEnum  

        model
            acl
                Permission
                Role
                RolePermission
                User
                UserRole

            base
                BaseEntity
                BaseMongoEntity
            cmn
                Dict
            cms
                Banner
            hosp
                BookingRule
                Department
                Hospital
                HospitalSet
                Schedule

            order
                OrderInfo
                PaymentInfo
                RefundInfo

            user
                Patient
                UserInfo
                RefundInfo

        vo
            acl
                AssignVo
                RoleQueryVo
                UserQueryVo

            cmn
                DictEeVo
            hosp
                BookingScheduleRuleVo
                DepartmentQueryVo
                DepartmentVo
                HospitalQueryVo
                HospitalSetQueryVo
                ScheduleOrderVo
                ScheduleQueryVo

            msm
                MsmVo
            order
                OrderCountQueryVo
                OrderCountVo
                OrderMqVo
                OrderQueryVo
                SignInfoVo

            user
                LoginVo
                RegisterVo
                UserAuthVo
                UserInfoQueryVo

     
    service接口服务父节点
        service-hosp医院api接口服务
            HospitalSetService医院设置CRUD接口(MyBatis-Plus CRUD)
            HospitalService医院CRUD接口  (MongoRepository CRUD)
            DepartmentService科室CRUD接口
  
            ScheduleService排班CRUD接口                                                                
        service-cmn公共api接口服务
            DictService数据字典接口  
        service-user用户api接口服务
            UserInfoService用户信息
            PatientService病人
        service-order订单api接口服务
            OrderService订单
        service-oss文件api接口服务
            FilerService文件
        service-msm短信api接口服务
            MsmService短信
        service-statistics统计api接口服务
           
    service-client服务调用feign父节点
        service-cmn-client公共api接口
            DictFeignClient
        service-hosp-client医院api接口
            HospitalFeignClient
        service-order-client订单api接口
            OrderFeignClient
        service-user-client用户api接口
            PatientFeignClient
            
    service-gateway服务网关
        config
            CorsConfig
        filter
            AuthGlobalFilter