├── .gitattributes ├── LICENSE ├── README.md ├── images ├── MES功能架构图.jpg ├── 排产功能图.jpg ├── 排班日历.png ├── 排班计划.png ├── 数据大屏1.jpg ├── 数据大屏2.jpg ├── 生产任务.png ├── 生产报工.png ├── 生产排产.png ├── 生产订单.png └── 系统流程图.jpg ├── source-code ├── metaxk-pro │ ├── Jenkinsfile │ ├── http-client.env.json │ ├── lombok.config │ ├── metaxk-dependencies │ │ └── pom.xml │ ├── metaxk-framework │ │ ├── metaxk-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── common │ │ │ │ ├── core │ │ │ │ ├── IntArrayValuable.java │ │ │ │ └── KeyValue.java │ │ │ │ ├── enums │ │ │ │ ├── CommonStatusEnum.java │ │ │ │ ├── DocumentEnum.java │ │ │ │ ├── TerminalEnum.java │ │ │ │ ├── UserTypeEnum.java │ │ │ │ └── WebFilterOrderEnum.java │ │ │ │ ├── exception │ │ │ │ ├── ErrorCode.java │ │ │ │ ├── ServerException.java │ │ │ │ ├── ServiceException.java │ │ │ │ ├── enums │ │ │ │ │ ├── GlobalErrorCodeConstants.java │ │ │ │ │ └── ServiceErrorCodeRange.java │ │ │ │ └── util │ │ │ │ │ └── ServiceExceptionUtil.java │ │ │ │ ├── package-info.java │ │ │ │ ├── pojo │ │ │ │ ├── CommonResult.java │ │ │ │ ├── PageParam.java │ │ │ │ ├── PageResult.java │ │ │ │ └── SortingField.java │ │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ └── CacheUtils.java │ │ │ │ ├── collection │ │ │ │ │ ├── ArrayUtils.java │ │ │ │ │ ├── CollectionUtils.java │ │ │ │ │ ├── MapUtils.java │ │ │ │ │ └── SetUtils.java │ │ │ │ ├── date │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ └── LocalDateTimeUtils.java │ │ │ │ ├── http │ │ │ │ │ └── HttpUtils.java │ │ │ │ ├── io │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ └── IoUtils.java │ │ │ │ ├── json │ │ │ │ │ └── JsonUtils.java │ │ │ │ ├── monitor │ │ │ │ │ └── TracerUtils.java │ │ │ │ ├── number │ │ │ │ │ └── NumberUtils.java │ │ │ │ ├── object │ │ │ │ │ ├── ObjectUtils.java │ │ │ │ │ └── PageUtils.java │ │ │ │ ├── package-info.java │ │ │ │ ├── servlet │ │ │ │ │ └── ServletUtils.java │ │ │ │ ├── spring │ │ │ │ │ ├── SpringAopUtils.java │ │ │ │ │ └── SpringExpressionUtils.java │ │ │ │ ├── string │ │ │ │ │ └── StrUtils.java │ │ │ │ └── validation │ │ │ │ │ └── ValidationUtils.java │ │ │ │ └── validation │ │ │ │ ├── InEnum.java │ │ │ │ ├── InEnumValidator.java │ │ │ │ ├── Mobile.java │ │ │ │ ├── MobileValidator.java │ │ │ │ └── package-info.java │ │ ├── metaxk-spring-boot-starter-banner │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── banner │ │ │ │ │ ├── config │ │ │ │ │ └── MetaxkBannerAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ └── BannerApplicationRunner.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── banner.txt │ │ ├── metaxk-spring-boot-starter-biz-data-permission │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── datapermission │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MetaxkDataPermissionAutoConfiguration.java │ │ │ │ │ │ └── MetaxkDeptDataPermissionAutoConfiguration.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── annotation │ │ │ │ │ │ │ └── DataPermission.java │ │ │ │ │ │ ├── aop │ │ │ │ │ │ │ ├── DataPermissionAnnotationAdvisor.java │ │ │ │ │ │ │ ├── DataPermissionAnnotationInterceptor.java │ │ │ │ │ │ │ └── DataPermissionContextHolder.java │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ └── DataPermissionDatabaseInterceptor.java │ │ │ │ │ │ ├── rule │ │ │ │ │ │ │ ├── DataPermissionRule.java │ │ │ │ │ │ │ ├── DataPermissionRuleFactory.java │ │ │ │ │ │ │ ├── DataPermissionRuleFactoryImpl.java │ │ │ │ │ │ │ └── dept │ │ │ │ │ │ │ │ ├── DeptDataPermissionRule.java │ │ │ │ │ │ │ │ ├── DeptDataPermissionRuleCustomizer.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── DataPermissionUtils.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── datapermission │ │ │ │ └── core │ │ │ │ ├── aop │ │ │ │ ├── DataPermissionAnnotationInterceptorTest.java │ │ │ │ └── DataPermissionContextHolderTest.java │ │ │ │ ├── db │ │ │ │ ├── DataPermissionDatabaseInterceptorTest.java │ │ │ │ └── DataPermissionDatabaseInterceptorTest2.java │ │ │ │ ├── rule │ │ │ │ ├── DataPermissionRuleFactoryImplTest.java │ │ │ │ └── dept │ │ │ │ │ └── DeptDataPermissionRuleTest.java │ │ │ │ └── util │ │ │ │ └── DataPermissionUtilsTest.java │ │ ├── metaxk-spring-boot-starter-biz-dict │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── dict │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkDictAutoConfiguration.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── DictFrameworkUtils.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── dict │ │ │ │ └── core │ │ │ │ └── util │ │ │ │ └── DictFrameworkUtilsTest.java │ │ ├── metaxk-spring-boot-starter-biz-error-code │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── errorcode │ │ │ │ │ ├── config │ │ │ │ │ ├── ErrorCodeProperties.java │ │ │ │ │ └── MetaxkErrorCodeConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── ErrorCodeAutoGenerator.java │ │ │ │ │ │ └── ErrorCodeAutoGeneratorImpl.java │ │ │ │ │ └── loader │ │ │ │ │ │ ├── ErrorCodeLoader.java │ │ │ │ │ │ └── ErrorCodeLoaderImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-biz-ip │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── ip │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── Area.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ └── AreaTypeEnum.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── AreaUtils.java │ │ │ │ │ │ │ └── IPUtils.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ │ ├── area.csv │ │ │ │ │ └── ip2region.xdb │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── ip │ │ │ │ └── core │ │ │ │ └── utils │ │ │ │ ├── AreaUtilsTest.java │ │ │ │ └── IPUtilsTest.java │ │ ├── metaxk-spring-boot-starter-biz-operatelog │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── operatelog │ │ │ │ │ ├── config │ │ │ │ │ └── MetaxkOperateLogAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── annotations │ │ │ │ │ │ └── OperateLog.java │ │ │ │ │ ├── aop │ │ │ │ │ │ └── OperateLogAspect.java │ │ │ │ │ ├── enums │ │ │ │ │ │ └── OperateTypeEnum.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── OperateLog.java │ │ │ │ │ │ ├── OperateLogFrameworkService.java │ │ │ │ │ │ └── OperateLogFrameworkServiceImpl.java │ │ │ │ │ └── util │ │ │ │ │ │ └── OperateLogUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-biz-pay │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── pay │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MetaxkPayAutoConfiguration.java │ │ │ │ │ │ └── PayProperties.java │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── PayClient.java │ │ │ │ │ │ ├── PayClientConfig.java │ │ │ │ │ │ ├── PayClientFactory.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ │ ├── PayNotifyReqDTO.java │ │ │ │ │ │ │ │ ├── PayOrderNotifyRespDTO.java │ │ │ │ │ │ │ │ └── PayRefundNotifyRespDTO.java │ │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ │ ├── PayOrderUnifiedReqDTO.java │ │ │ │ │ │ │ │ └── PayOrderUnifiedRespDTO.java │ │ │ │ │ │ │ └── refund │ │ │ │ │ │ │ │ ├── PayRefundUnifiedReqDTO.java │ │ │ │ │ │ │ │ └── PayRefundUnifiedRespDTO.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── AbstractPayClient.java │ │ │ │ │ │ │ ├── PayClientFactoryImpl.java │ │ │ │ │ │ │ ├── alipay │ │ │ │ │ │ │ ├── AbstractAlipayClient.java │ │ │ │ │ │ │ ├── AlipayAppPayClient.java │ │ │ │ │ │ │ ├── AlipayBarPayClient.java │ │ │ │ │ │ │ ├── AlipayPayClientConfig.java │ │ │ │ │ │ │ ├── AlipayPcPayClient.java │ │ │ │ │ │ │ ├── AlipayQrPayClient.java │ │ │ │ │ │ │ └── AlipayWapPayClient.java │ │ │ │ │ │ │ └── wx │ │ │ │ │ │ │ ├── WXLitePayClient.java │ │ │ │ │ │ │ ├── WXNativePayClient.java │ │ │ │ │ │ │ ├── WXPayClientConfig.java │ │ │ │ │ │ │ └── WXPubPayClient.java │ │ │ │ │ │ └── enums │ │ │ │ │ │ ├── PayChannelEnum.java │ │ │ │ │ │ ├── PayChannelRefundRespEnum.java │ │ │ │ │ │ ├── PayDisplayModeEnum.java │ │ │ │ │ │ ├── PayFrameworkErrorCodeConstants.java │ │ │ │ │ │ └── PayNotifyRefundStatusEnum.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── pay │ │ │ │ └── core │ │ │ │ └── client │ │ │ │ └── impl │ │ │ │ ├── PayClientFactoryImplIntegrationTest.java │ │ │ │ └── alipay │ │ │ │ └── AlipayQrPayClientTest.java │ │ ├── metaxk-spring-boot-starter-biz-sms │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── sms │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkSmsAutoConfiguration.java │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── SmsClient.java │ │ │ │ │ │ ├── SmsClientFactory.java │ │ │ │ │ │ ├── SmsCodeMapping.java │ │ │ │ │ │ ├── SmsCommonResult.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── SmsReceiveRespDTO.java │ │ │ │ │ │ │ ├── SmsSendRespDTO.java │ │ │ │ │ │ │ └── SmsTemplateRespDTO.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── AbstractSmsClient.java │ │ │ │ │ │ │ ├── SmsClientFactoryImpl.java │ │ │ │ │ │ │ ├── aliyun │ │ │ │ │ │ │ ├── AliyunSmsClient.java │ │ │ │ │ │ │ └── AliyunSmsCodeMapping.java │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── DebugDingTalkCodeMapping.java │ │ │ │ │ │ │ └── DebugDingTalkSmsClient.java │ │ │ │ │ │ │ └── tencent │ │ │ │ │ │ │ ├── TencentSmsChannelProperties.java │ │ │ │ │ │ │ ├── TencentSmsClient.java │ │ │ │ │ │ │ └── TencentSmsCodeMapping.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── SmsChannelEnum.java │ │ │ │ │ │ ├── SmsFrameworkErrorCodeConstants.java │ │ │ │ │ │ └── SmsTemplateAuditStatusEnum.java │ │ │ │ │ │ └── property │ │ │ │ │ │ └── SmsChannelProperties.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ ├── test-integration │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── sms │ │ │ │ │ └── core │ │ │ │ │ └── client │ │ │ │ │ └── impl │ │ │ │ │ ├── aliyun │ │ │ │ │ └── AliyunSmsClientIntegrationTest.java │ │ │ │ │ └── debug │ │ │ │ │ └── DebugDingTalkSmsClientIntegrationTest.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── sms │ │ │ │ └── core │ │ │ │ └── client │ │ │ │ └── impl │ │ │ │ ├── aliyun │ │ │ │ ├── AliyunSmsClientTest.java │ │ │ │ └── AliyunSmsCodeMappingTest.java │ │ │ │ └── tencent │ │ │ │ ├── TencentSmsClientTest.java │ │ │ │ └── TencentSmsCodeMappingTest.java │ │ ├── metaxk-spring-boot-starter-biz-social │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── social │ │ │ │ │ ├── config │ │ │ │ │ └── MetaxkSocialAutoConfiguration.java │ │ │ │ │ └── core │ │ │ │ │ ├── MetaxkAuthRequestFactory.java │ │ │ │ │ ├── enums │ │ │ │ │ └── AuthExtendSource.java │ │ │ │ │ └── request │ │ │ │ │ └── AuthWeChatMiniAppRequest.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-biz-tenant │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── tenant │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MetaxkTenantAutoConfiguration.java │ │ │ │ │ │ └── TenantProperties.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── aop │ │ │ │ │ │ │ ├── TenantIgnore.java │ │ │ │ │ │ │ └── TenantIgnoreAspect.java │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ └── TenantContextHolder.java │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── TenantBaseDO.java │ │ │ │ │ │ │ └── TenantDatabaseInterceptor.java │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── TenantJob.java │ │ │ │ │ │ │ └── TenantJobHandlerDecorator.java │ │ │ │ │ │ ├── mq │ │ │ │ │ │ │ └── TenantRedisMessageInterceptor.java │ │ │ │ │ │ ├── redis │ │ │ │ │ │ │ ├── TenantRedisCacheManager.java │ │ │ │ │ │ │ └── TenantRedisKeyDefine.java │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ └── TenantSecurityWebFilter.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── TenantFrameworkService.java │ │ │ │ │ │ │ └── TenantFrameworkServiceImpl.java │ │ │ │ │ │ ├── util │ │ │ │ │ │ │ └── TenantUtils.java │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── TenantContextWebFilter.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── tenant │ │ │ │ └── core │ │ │ │ └── redis │ │ │ │ └── TenantRedisKeyDefineTest.java │ │ ├── metaxk-spring-boot-starter-biz-weixin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test-integration │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── weixin │ │ │ │ │ └── WxMpServiceTest.java │ │ │ │ └── resources │ │ │ │ └── application.yml │ │ ├── metaxk-spring-boot-starter-captcha │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── captcha │ │ │ │ │ ├── config │ │ │ │ │ └── MetaxkCaptchaConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── enums │ │ │ │ │ │ └── CaptchaRedisKeyConstants.java │ │ │ │ │ └── service │ │ │ │ │ │ └── RedisCaptchaServiceImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── services │ │ │ │ │ └── com.xingyuv.captcha.service.CaptchaCacheService │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── images │ │ │ │ ├── jigsaw │ │ │ │ ├── original │ │ │ │ │ ├── bg1.png │ │ │ │ │ ├── bg2.png │ │ │ │ │ ├── bg3.png │ │ │ │ │ ├── bg4.png │ │ │ │ │ ├── bg5.png │ │ │ │ │ ├── bg6.png │ │ │ │ │ ├── bg7.png │ │ │ │ │ ├── bg8.png │ │ │ │ │ └── bg9.png │ │ │ │ └── slidingBlock │ │ │ │ │ ├── 11 │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 15.png │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 18.png │ │ │ │ │ ├── 19.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ └── 4.png │ │ │ │ └── pic-click │ │ │ │ ├── bg1.png │ │ │ │ ├── bg10.png │ │ │ │ ├── bg2.png │ │ │ │ ├── bg3.png │ │ │ │ ├── bg4.png │ │ │ │ ├── bg5.png │ │ │ │ ├── bg6.png │ │ │ │ ├── bg7.png │ │ │ │ ├── bg8.png │ │ │ │ └── bg9.png │ │ ├── metaxk-spring-boot-starter-desensitize │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── desensitize │ │ │ │ │ └── core │ │ │ │ │ ├── base │ │ │ │ │ ├── annotation │ │ │ │ │ │ └── DesensitizeBy.java │ │ │ │ │ ├── handler │ │ │ │ │ │ └── DesensitizationHandler.java │ │ │ │ │ └── serializer │ │ │ │ │ │ └── StringDesensitizeSerializer.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── regex │ │ │ │ │ ├── annotation │ │ │ │ │ │ ├── EmailDesensitize.java │ │ │ │ │ │ └── RegexDesensitize.java │ │ │ │ │ └── handler │ │ │ │ │ │ ├── AbstractRegexDesensitizationHandler.java │ │ │ │ │ │ ├── DefaultRegexDesensitizationHandler.java │ │ │ │ │ │ └── EmailDesensitizationHandler.java │ │ │ │ │ └── slider │ │ │ │ │ ├── annotation │ │ │ │ │ ├── BankCardDesensitize.java │ │ │ │ │ ├── CarLicenseDesensitize.java │ │ │ │ │ ├── ChineseNameDesensitize.java │ │ │ │ │ ├── FixedPhoneDesensitize.java │ │ │ │ │ ├── IdCardDesensitize.java │ │ │ │ │ ├── MobileDesensitize.java │ │ │ │ │ ├── PasswordDesensitize.java │ │ │ │ │ └── SliderDesensitize.java │ │ │ │ │ └── handler │ │ │ │ │ ├── AbstractSliderDesensitizationHandler.java │ │ │ │ │ ├── BankCardDesensitization.java │ │ │ │ │ ├── CarLicenseDesensitization.java │ │ │ │ │ ├── ChineseNameDesensitization.java │ │ │ │ │ ├── DefaultDesensitizationHandler.java │ │ │ │ │ ├── FixedPhoneDesensitization.java │ │ │ │ │ ├── IdCardDesensitization.java │ │ │ │ │ ├── MobileDesensitization.java │ │ │ │ │ └── PasswordDesensitization.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── desensitize │ │ │ │ └── core │ │ │ │ ├── DesensitizeTest.java │ │ │ │ ├── annotation │ │ │ │ └── Address.java │ │ │ │ └── handler │ │ │ │ └── AddressHandler.java │ │ ├── metaxk-spring-boot-starter-excel │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── excel │ │ │ │ ├── core │ │ │ │ ├── annotations │ │ │ │ │ └── DictFormat.java │ │ │ │ ├── convert │ │ │ │ │ ├── DictConvert.java │ │ │ │ │ └── JsonConvert.java │ │ │ │ └── util │ │ │ │ │ └── ExcelUtils.java │ │ │ │ └── package-info.java │ │ ├── metaxk-spring-boot-starter-file │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── file │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkFileAutoConfiguration.java │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── AbstractFileClient.java │ │ │ │ │ │ ├── FileClient.java │ │ │ │ │ │ ├── FileClientConfig.java │ │ │ │ │ │ ├── FileClientFactory.java │ │ │ │ │ │ ├── FileClientFactoryImpl.java │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── DBFileClient.java │ │ │ │ │ │ │ ├── DBFileClientConfig.java │ │ │ │ │ │ │ └── DBFileContentFrameworkDAO.java │ │ │ │ │ │ ├── ftp │ │ │ │ │ │ │ ├── FtpFileClient.java │ │ │ │ │ │ │ └── FtpFileClientConfig.java │ │ │ │ │ │ ├── local │ │ │ │ │ │ │ ├── LocalFileClient.java │ │ │ │ │ │ │ └── LocalFileClientConfig.java │ │ │ │ │ │ ├── s3 │ │ │ │ │ │ │ ├── S3FileClient.java │ │ │ │ │ │ │ └── S3FileClientConfig.java │ │ │ │ │ │ └── sftp │ │ │ │ │ │ │ ├── SftpFileClient.java │ │ │ │ │ │ │ └── SftpFileClientConfig.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ └── FileStorageEnum.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ └── FileTypeUtils.java │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── spring │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── file │ │ │ │ │ ├── config │ │ │ │ │ └── package-info.java │ │ │ │ │ └── core │ │ │ │ │ ├── client │ │ │ │ │ ├── ftp │ │ │ │ │ │ └── FtpFileClientTest.java │ │ │ │ │ ├── local │ │ │ │ │ │ └── LocalFileClientTest.java │ │ │ │ │ ├── s3 │ │ │ │ │ │ └── S3FileClientTest.java │ │ │ │ │ └── sftp │ │ │ │ │ │ └── SftpFileClientTest.java │ │ │ │ │ └── enums │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── file │ │ │ │ └── erweima.jpg │ │ ├── metaxk-spring-boot-starter-flowable │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── flowable │ │ │ │ │ ├── config │ │ │ │ │ └── MetaxkFlowableConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── util │ │ │ │ │ │ └── FlowableUtils.java │ │ │ │ │ └── web │ │ │ │ │ │ └── FlowableWebFilter.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-job │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── quartz │ │ │ │ │ ├── config │ │ │ │ │ ├── MetaxkAsyncAutoConfiguration.java │ │ │ │ │ └── MetaxkQuartzAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── enums │ │ │ │ │ │ └── JobDataKeyEnum.java │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── JobHandler.java │ │ │ │ │ │ └── JobHandlerInvoker.java │ │ │ │ │ ├── scheduler │ │ │ │ │ │ └── SchedulerManager.java │ │ │ │ │ ├── service │ │ │ │ │ │ └── JobLogFrameworkService.java │ │ │ │ │ └── util │ │ │ │ │ │ └── CronUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-monitor │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── tracer │ │ │ │ │ ├── config │ │ │ │ │ ├── MetaxkMetricsAutoConfiguration.java │ │ │ │ │ ├── MetaxkTracerAutoConfiguration.java │ │ │ │ │ └── TracerProperties.java │ │ │ │ │ ├── core │ │ │ │ │ ├── annotation │ │ │ │ │ │ └── BizTrace.java │ │ │ │ │ ├── aop │ │ │ │ │ │ └── BizTraceAspect.java │ │ │ │ │ ├── filter │ │ │ │ │ │ └── TraceFilter.java │ │ │ │ │ └── util │ │ │ │ │ │ └── TracerFrameworkUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-mq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ ├── io │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── framework │ │ │ │ │ │ └── mq │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkMQAutoConfiguration.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── RedisMQTemplate.java │ │ │ │ │ │ ├── interceptor │ │ │ │ │ │ │ └── RedisMessageInterceptor.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── AbstractRedisMessage.java │ │ │ │ │ │ ├── pubsub │ │ │ │ │ │ │ ├── AbstractChannelMessage.java │ │ │ │ │ │ │ └── AbstractChannelMessageListener.java │ │ │ │ │ │ └── stream │ │ │ │ │ │ │ ├── AbstractStreamMessage.java │ │ │ │ │ │ │ └── AbstractStreamMessageListener.java │ │ │ │ │ │ ├── job │ │ │ │ │ │ └── RedisPendingMessageResendJob.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── org │ │ │ │ │ └── springframework │ │ │ │ │ └── data │ │ │ │ │ └── redis │ │ │ │ │ └── stream │ │ │ │ │ └── DefaultStreamMessageListenerContainerX.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-mybatis │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ ├── datasource │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkDataSourceAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ └── DataSourceEnum.java │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── DruidAdRemoveFilter.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── expression │ │ │ │ │ ├── AndExpressionX.java │ │ │ │ │ └── OrExpressionX.java │ │ │ │ │ ├── mybatis │ │ │ │ │ ├── config │ │ │ │ │ │ ├── IdTypeEnvironmentPostProcessor.java │ │ │ │ │ │ └── MetaxkMybatisAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── dataobject │ │ │ │ │ │ │ └── BaseDO.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ └── SqlConstants.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ └── DefaultDBFieldHandler.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ └── BaseMapperX.java │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── LambdaQueryWrapperX.java │ │ │ │ │ │ │ └── QueryWrapperX.java │ │ │ │ │ │ ├── type │ │ │ │ │ │ │ ├── EncryptTypeHandler.java │ │ │ │ │ │ │ ├── JsonLongSetTypeHandler.java │ │ │ │ │ │ │ ├── LongListTypeHandler.java │ │ │ │ │ │ │ └── StringListTypeHandler.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── JdbcUtils.java │ │ │ │ │ │ │ └── MyBatisUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── spring.factories │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-protection │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ ├── idempotent │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkIdempotentConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── annotation │ │ │ │ │ │ │ └── Idempotent.java │ │ │ │ │ │ ├── aop │ │ │ │ │ │ │ └── IdempotentAspect.java │ │ │ │ │ │ ├── keyresolver │ │ │ │ │ │ │ ├── IdempotentKeyResolver.java │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── DefaultIdempotentKeyResolver.java │ │ │ │ │ │ │ │ └── ExpressionIdempotentKeyResolver.java │ │ │ │ │ │ └── redis │ │ │ │ │ │ │ └── IdempotentRedisDAO.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── lock4j │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkLock4jConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── DefaultLockFailureStrategy.java │ │ │ │ │ │ └── Lock4jRedisKeyConstants.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── resilience4j │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-redis │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── redis │ │ │ │ │ ├── config │ │ │ │ │ ├── MetaxkCacheAutoConfiguration.java │ │ │ │ │ └── MetaxkRedisAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ ├── RedisKeyDefine.java │ │ │ │ │ └── RedisKeyRegistry.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-security │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── security │ │ │ │ │ ├── config │ │ │ │ │ ├── AuthorizeRequestsCustomizer.java │ │ │ │ │ ├── MetaxkSecurityAutoConfiguration.java │ │ │ │ │ ├── MetaxkWebSecurityConfigurerAdapter.java │ │ │ │ │ └── SecurityProperties.java │ │ │ │ │ ├── core │ │ │ │ │ ├── LoginUser.java │ │ │ │ │ ├── annotations │ │ │ │ │ │ └── PreAuthenticated.java │ │ │ │ │ ├── aop │ │ │ │ │ │ └── PreAuthenticatedAspect.java │ │ │ │ │ ├── context │ │ │ │ │ │ └── TransmittableThreadLocalSecurityContextHolderStrategy.java │ │ │ │ │ ├── filter │ │ │ │ │ │ └── TokenAuthenticationFilter.java │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── AccessDeniedHandlerImpl.java │ │ │ │ │ │ └── AuthenticationEntryPointImpl.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── SecurityFrameworkService.java │ │ │ │ │ │ └── SecurityFrameworkServiceImpl.java │ │ │ │ │ └── util │ │ │ │ │ │ └── SecurityFrameworkUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-test │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── framework │ │ │ │ └── test │ │ │ │ ├── config │ │ │ │ ├── RedisTestConfiguration.java │ │ │ │ └── SqlInitializationTestConfiguration.java │ │ │ │ ├── core │ │ │ │ ├── ut │ │ │ │ │ ├── BaseDbAndRedisUnitTest.java │ │ │ │ │ ├── BaseDbUnitTest.java │ │ │ │ │ ├── BaseMockitoUnitTest.java │ │ │ │ │ ├── BaseRedisUnitTest.java │ │ │ │ │ └── package-info.java │ │ │ │ └── util │ │ │ │ │ ├── AssertUtils.java │ │ │ │ │ └── RandomUtils.java │ │ │ │ └── package-info.java │ │ ├── metaxk-spring-boot-starter-web │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ ├── apilog │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkApiLogAutoConfiguration.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ └── ApiAccessLogFilter.java │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── ApiAccessLog.java │ │ │ │ │ │ │ ├── ApiAccessLogFrameworkService.java │ │ │ │ │ │ │ ├── ApiAccessLogFrameworkServiceImpl.java │ │ │ │ │ │ │ ├── ApiErrorLog.java │ │ │ │ │ │ │ ├── ApiErrorLogFrameworkService.java │ │ │ │ │ │ │ └── ApiErrorLogFrameworkServiceImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── jackson │ │ │ │ │ ├── config │ │ │ │ │ │ └── MetaxkJacksonAutoConfiguration.java │ │ │ │ │ └── core │ │ │ │ │ │ ├── databind │ │ │ │ │ │ ├── LocalDateTimeDeserializer.java │ │ │ │ │ │ ├── LocalDateTimeSerializer.java │ │ │ │ │ │ ├── LocalTimeJson.java │ │ │ │ │ │ └── NumberSerializer.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── swagger │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MetaxkSwaggerAutoConfiguration.java │ │ │ │ │ │ └── SwaggerProperties.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── web │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MetaxkWebAutoConfiguration.java │ │ │ │ │ │ └── WebProperties.java │ │ │ │ │ ├── core │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── ApiRequestFilter.java │ │ │ │ │ │ │ ├── CacheRequestBodyFilter.java │ │ │ │ │ │ │ ├── CacheRequestBodyWrapper.java │ │ │ │ │ │ │ └── DemoFilter.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ ├── GlobalExceptionHandler.java │ │ │ │ │ │ │ └── GlobalResponseBodyHandler.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── WebFrameworkUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── xss │ │ │ │ │ ├── config │ │ │ │ │ ├── MetaxkXssAutoConfiguration.java │ │ │ │ │ └── XssProperties.java │ │ │ │ │ ├── core │ │ │ │ │ ├── clean │ │ │ │ │ │ ├── JsoupXssCleaner.java │ │ │ │ │ │ └── XssCleaner.java │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── XssFilter.java │ │ │ │ │ │ └── XssRequestWrapper.java │ │ │ │ │ └── json │ │ │ │ │ │ └── XssStringJsonDeserializer.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── metaxk-spring-boot-starter-websocket │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── framework │ │ │ │ │ └── websocket │ │ │ │ │ ├── config │ │ │ │ │ ├── MetaxkWebSocketAutoConfiguration.java │ │ │ │ │ ├── WebSocketHandlerConfig.java │ │ │ │ │ └── WebSocketProperties.java │ │ │ │ │ ├── core │ │ │ │ │ ├── MetaxkWebSocketHandlerDecorator.java │ │ │ │ │ ├── UserHandshakeInterceptor.java │ │ │ │ │ ├── WebSocketKeyDefine.java │ │ │ │ │ ├── WebSocketMessageDO.java │ │ │ │ │ ├── WebSocketSessionHandler.java │ │ │ │ │ └── WebSocketUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── pom.xml │ ├── metaxk-module-bpm │ │ ├── metaxk-module-bpm-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── bpm │ │ │ │ ├── api │ │ │ │ ├── package-info.java │ │ │ │ └── task │ │ │ │ │ ├── BpmProcessInstanceApi.java │ │ │ │ │ └── dto │ │ │ │ │ └── BpmProcessInstanceCreateReqDTO.java │ │ │ │ └── enums │ │ │ │ ├── DictTypeConstants.java │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ ├── definition │ │ │ │ ├── BpmModelFormTypeEnum.java │ │ │ │ ├── BpmTaskAssignRuleTypeEnum.java │ │ │ │ └── BpmTaskRuleScriptEnum.java │ │ │ │ ├── message │ │ │ │ └── BpmMessageEnum.java │ │ │ │ └── task │ │ │ │ ├── BpmProcessInstanceDeleteReasonEnum.java │ │ │ │ ├── BpmProcessInstanceResultEnum.java │ │ │ │ └── BpmProcessInstanceStatusEnum.java │ │ ├── metaxk-module-bpm-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── bpm │ │ │ │ │ ├── api │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── task │ │ │ │ │ │ └── BpmProcessInstanceApiImpl.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── definition │ │ │ │ │ │ │ ├── BpmFormController.java │ │ │ │ │ │ │ ├── BpmModelController.java │ │ │ │ │ │ │ ├── BpmProcessDefinitionController.java │ │ │ │ │ │ │ ├── BpmTaskAssignRuleController.java │ │ │ │ │ │ │ ├── BpmUserGroupController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── BpmFormBaseVO.java │ │ │ │ │ │ │ │ ├── BpmFormCreateReqVO.java │ │ │ │ │ │ │ │ ├── BpmFormPageReqVO.java │ │ │ │ │ │ │ │ ├── BpmFormRespVO.java │ │ │ │ │ │ │ │ ├── BpmFormSimpleRespVO.java │ │ │ │ │ │ │ │ └── BpmFormUpdateReqVO.java │ │ │ │ │ │ │ │ ├── group │ │ │ │ │ │ │ │ ├── BpmUserGroupBaseVO.java │ │ │ │ │ │ │ │ ├── BpmUserGroupCreateReqVO.java │ │ │ │ │ │ │ │ ├── BpmUserGroupPageReqVO.java │ │ │ │ │ │ │ │ ├── BpmUserGroupRespVO.java │ │ │ │ │ │ │ │ ├── BpmUserGroupSimpleRespVO.java │ │ │ │ │ │ │ │ └── BpmUserGroupUpdateReqVO.java │ │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ ├── BpmModeImportReqVO.java │ │ │ │ │ │ │ │ ├── BpmModelBaseVO.java │ │ │ │ │ │ │ │ ├── BpmModelCreateReqVO.java │ │ │ │ │ │ │ │ ├── BpmModelPageItemRespVO.java │ │ │ │ │ │ │ │ ├── BpmModelPageReqVO.java │ │ │ │ │ │ │ │ ├── BpmModelRespVO.java │ │ │ │ │ │ │ │ ├── BpmModelUpdateReqVO.java │ │ │ │ │ │ │ │ └── BpmModelUpdateStateReqVO.java │ │ │ │ │ │ │ │ ├── process │ │ │ │ │ │ │ │ ├── BpmProcessDefinitionListReqVO.java │ │ │ │ │ │ │ │ ├── BpmProcessDefinitionPageItemRespVO.java │ │ │ │ │ │ │ │ ├── BpmProcessDefinitionPageReqVO.java │ │ │ │ │ │ │ │ └── BpmProcessDefinitionRespVO.java │ │ │ │ │ │ │ │ └── rule │ │ │ │ │ │ │ │ ├── BpmTaskAssignRuleBaseVO.java │ │ │ │ │ │ │ │ ├── BpmTaskAssignRuleCreateReqVO.java │ │ │ │ │ │ │ │ ├── BpmTaskAssignRuleRespVO.java │ │ │ │ │ │ │ │ └── BpmTaskAssignRuleUpdateReqVO.java │ │ │ │ │ │ ├── oa │ │ │ │ │ │ │ ├── BpmOALeaveController.http │ │ │ │ │ │ │ ├── BpmOALeaveController.java │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── BpmOALeaveBaseVO.java │ │ │ │ │ │ │ │ ├── BpmOALeaveCreateReqVO.java │ │ │ │ │ │ │ │ ├── BpmOALeavePageReqVO.java │ │ │ │ │ │ │ │ └── BpmOALeaveRespVO.java │ │ │ │ │ │ └── task │ │ │ │ │ │ │ ├── BpmActivityController.java │ │ │ │ │ │ │ ├── BpmProcessInstanceController.java │ │ │ │ │ │ │ ├── BpmTaskController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ └── BpmActivityRespVO.java │ │ │ │ │ │ │ ├── instance │ │ │ │ │ │ │ ├── BpmProcessInstanceCancelReqVO.java │ │ │ │ │ │ │ ├── BpmProcessInstanceCreateReqVO.java │ │ │ │ │ │ │ ├── BpmProcessInstanceMyPageReqVO.java │ │ │ │ │ │ │ ├── BpmProcessInstancePageItemRespVO.java │ │ │ │ │ │ │ └── BpmProcessInstanceRespVO.java │ │ │ │ │ │ │ └── task │ │ │ │ │ │ │ ├── BpmTaskApproveReqVO.java │ │ │ │ │ │ │ ├── BpmTaskDonePageItemRespVO.java │ │ │ │ │ │ │ ├── BpmTaskDonePageReqVO.java │ │ │ │ │ │ │ ├── BpmTaskRejectReqVO.java │ │ │ │ │ │ │ ├── BpmTaskRespVO.java │ │ │ │ │ │ │ ├── BpmTaskTodoPageItemRespVO.java │ │ │ │ │ │ │ ├── BpmTaskTodoPageReqVO.java │ │ │ │ │ │ │ └── BpmTaskUpdateAssigneeReqVO.java │ │ │ │ │ ├── app │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── convert │ │ │ │ │ ├── definition │ │ │ │ │ │ ├── BpmFormConvert.java │ │ │ │ │ │ ├── BpmModelConvert.java │ │ │ │ │ │ ├── BpmProcessDefinitionConvert.java │ │ │ │ │ │ ├── BpmTaskAssignRuleConvert.java │ │ │ │ │ │ └── BpmUserGroupConvert.java │ │ │ │ │ ├── message │ │ │ │ │ │ └── BpmMessageConvert.java │ │ │ │ │ ├── oa │ │ │ │ │ │ └── BpmOALeaveConvert.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── task │ │ │ │ │ │ ├── BpmActivityConvert.java │ │ │ │ │ │ ├── BpmProcessInstanceConvert.java │ │ │ │ │ │ ├── BpmTaskConvert.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── dal │ │ │ │ │ ├── dataobject │ │ │ │ │ │ ├── definition │ │ │ │ │ │ │ ├── BpmFormDO.java │ │ │ │ │ │ │ ├── BpmProcessDefinitionExtDO.java │ │ │ │ │ │ │ ├── BpmTaskAssignRuleDO.java │ │ │ │ │ │ │ ├── BpmTaskMessageRuleDO.java │ │ │ │ │ │ │ └── BpmUserGroupDO.java │ │ │ │ │ │ ├── oa │ │ │ │ │ │ │ └── BpmOALeaveDO.java │ │ │ │ │ │ └── task │ │ │ │ │ │ │ ├── BpmActivityDO.java │ │ │ │ │ │ │ ├── BpmProcessInstanceExtDO.java │ │ │ │ │ │ │ └── BpmTaskExtDO.java │ │ │ │ │ └── mysql │ │ │ │ │ │ ├── definition │ │ │ │ │ │ ├── BpmFormMapper.java │ │ │ │ │ │ ├── BpmProcessDefinitionExtMapper.java │ │ │ │ │ │ ├── BpmTaskAssignRuleMapper.java │ │ │ │ │ │ └── BpmUserGroupMapper.java │ │ │ │ │ │ ├── oa │ │ │ │ │ │ └── BpmOALeaveMapper.java │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── BpmProcessInstanceExtMapper.java │ │ │ │ │ │ └── BpmTaskExtMapper.java │ │ │ │ │ ├── framework │ │ │ │ │ ├── bpm │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── BpmCommonConfiguration.java │ │ │ │ │ │ │ └── BpmSecurityConfiguration.java │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ │ ├── BpmProcessInstanceResultEvent.java │ │ │ │ │ │ │ │ ├── BpmProcessInstanceResultEventListener.java │ │ │ │ │ │ │ │ ├── BpmProcessInstanceResultEventPublisher.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── flowable │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── BpmFlowableConfiguration.java │ │ │ │ │ │ └── core │ │ │ │ │ │ │ ├── behavior │ │ │ │ │ │ │ ├── BpmActivityBehaviorFactory.java │ │ │ │ │ │ │ ├── BpmParallelMultiInstanceBehavior.java │ │ │ │ │ │ │ ├── BpmUserTaskActivityBehavior.java │ │ │ │ │ │ │ └── script │ │ │ │ │ │ │ │ ├── BpmTaskAssignScript.java │ │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── BpmTaskAssignLeaderAbstractScript.java │ │ │ │ │ │ │ │ ├── BpmTaskAssignLeaderX1Script.java │ │ │ │ │ │ │ │ ├── BpmTaskAssignLeaderX2Script.java │ │ │ │ │ │ │ │ └── BpmTaskAssignStartUserScript.java │ │ │ │ │ │ │ └── listener │ │ │ │ │ │ │ ├── BpmProcessInstanceEventListener.java │ │ │ │ │ │ │ └── BpmTaskEventListener.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── web │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── BpmWebConfiguration.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── service │ │ │ │ │ ├── definition │ │ │ │ │ ├── BpmFormService.java │ │ │ │ │ ├── BpmFormServiceImpl.java │ │ │ │ │ ├── BpmModelService.java │ │ │ │ │ ├── BpmModelServiceImpl.java │ │ │ │ │ ├── BpmProcessDefinitionService.java │ │ │ │ │ ├── BpmProcessDefinitionServiceImpl.java │ │ │ │ │ ├── BpmTaskAssignRuleService.java │ │ │ │ │ ├── BpmTaskAssignRuleServiceImpl.java │ │ │ │ │ ├── BpmUserGroupService.java │ │ │ │ │ ├── BpmUserGroupServiceImpl.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── BpmFormFieldRespDTO.java │ │ │ │ │ │ ├── BpmModelMetaInfoRespDTO.java │ │ │ │ │ │ └── BpmProcessDefinitionCreateReqDTO.java │ │ │ │ │ ├── message │ │ │ │ │ ├── BpmMessageService.java │ │ │ │ │ ├── BpmMessageServiceImpl.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── BpmMessageSendWhenProcessInstanceApproveReqDTO.java │ │ │ │ │ │ ├── BpmMessageSendWhenProcessInstanceRejectReqDTO.java │ │ │ │ │ │ └── BpmMessageSendWhenTaskCreatedReqDTO.java │ │ │ │ │ ├── oa │ │ │ │ │ ├── BpmOALeaveService.java │ │ │ │ │ ├── BpmOALeaveServiceImpl.java │ │ │ │ │ └── listener │ │ │ │ │ │ └── BpmOALeaveResultListener.java │ │ │ │ │ └── task │ │ │ │ │ ├── BpmActivityService.java │ │ │ │ │ ├── BpmActivityServiceImpl.java │ │ │ │ │ ├── BpmProcessInstanceService.java │ │ │ │ │ ├── BpmProcessInstanceServiceImpl.java │ │ │ │ │ ├── BpmTaskService.java │ │ │ │ │ ├── BpmTaskServiceImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── bpm │ │ │ │ │ ├── framework │ │ │ │ │ └── flowable │ │ │ │ │ │ └── core │ │ │ │ │ │ └── behavior │ │ │ │ │ │ └── script │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── BpmTaskAssignLeaderX2ScriptTest.java │ │ │ │ │ └── service │ │ │ │ │ └── definition │ │ │ │ │ ├── BpmFormServiceTest.java │ │ │ │ │ ├── BpmTaskAssignRuleServiceImplTest.java │ │ │ │ │ └── BpmUserGroupServiceTest.java │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clean.sql │ │ │ │ └── create_tables.sql │ │ └── pom.xml │ ├── metaxk-module-infra │ │ ├── metaxk-module-infra-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── infra │ │ │ │ ├── api │ │ │ │ ├── file │ │ │ │ │ └── FileApi.java │ │ │ │ ├── logger │ │ │ │ │ ├── ApiAccessLogApi.java │ │ │ │ │ ├── ApiErrorLogApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── ApiAccessLogCreateReqDTO.java │ │ │ │ │ │ └── ApiErrorLogCreateReqDTO.java │ │ │ │ └── package-info.java │ │ │ │ └── enums │ │ │ │ ├── DictTypeConstants.java │ │ │ │ └── ErrorCodeConstants.java │ │ ├── metaxk-module-infra-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── module │ │ │ │ │ │ └── infra │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── FileApiImpl.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── ApiAccessLogApiImpl.java │ │ │ │ │ │ │ └── ApiErrorLogApiImpl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ │ ├── CodegenController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── CodegenCreateListReqVO.java │ │ │ │ │ │ │ │ │ ├── CodegenDetailRespVO.java │ │ │ │ │ │ │ │ │ ├── CodegenPreviewRespVO.java │ │ │ │ │ │ │ │ │ ├── CodegenUpdateReqVO.java │ │ │ │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ │ │ ├── CodegenColumnBaseVO.java │ │ │ │ │ │ │ │ │ └── CodegenColumnRespVO.java │ │ │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ │ ├── CodegenTableBaseVO.java │ │ │ │ │ │ │ │ │ ├── CodegenTablePageReqVO.java │ │ │ │ │ │ │ │ │ ├── CodegenTableRespVO.java │ │ │ │ │ │ │ │ │ └── DatabaseTableRespVO.java │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ConfigController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── ConfigBaseVO.java │ │ │ │ │ │ │ │ │ ├── ConfigCreateReqVO.java │ │ │ │ │ │ │ │ │ ├── ConfigExcelVO.java │ │ │ │ │ │ │ │ │ ├── ConfigExportReqVO.java │ │ │ │ │ │ │ │ │ ├── ConfigPageReqVO.java │ │ │ │ │ │ │ │ │ ├── ConfigRespVO.java │ │ │ │ │ │ │ │ │ └── ConfigUpdateReqVO.java │ │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ │ ├── DataSourceConfigController.java │ │ │ │ │ │ │ │ ├── DatabaseDocController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── DataSourceConfigBaseVO.java │ │ │ │ │ │ │ │ │ ├── DataSourceConfigCreateReqVO.java │ │ │ │ │ │ │ │ │ ├── DataSourceConfigRespVO.java │ │ │ │ │ │ │ │ │ └── DataSourceConfigUpdateReqVO.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── FileConfigController.http │ │ │ │ │ │ │ │ ├── FileConfigController.java │ │ │ │ │ │ │ │ ├── FileController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ ├── FileConfigBaseVO.java │ │ │ │ │ │ │ │ │ ├── FileConfigCreateReqVO.java │ │ │ │ │ │ │ │ │ ├── FileConfigPageReqVO.java │ │ │ │ │ │ │ │ │ ├── FileConfigRespVO.java │ │ │ │ │ │ │ │ │ └── FileConfigUpdateReqVO.java │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ │ ├── FilePageReqVO.java │ │ │ │ │ │ │ │ │ ├── FileRespVO.java │ │ │ │ │ │ │ │ │ └── FileUploadReqVO.java │ │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ │ ├── JobController.java │ │ │ │ │ │ │ │ ├── JobLogController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ │ │ ├── JobBaseVO.java │ │ │ │ │ │ │ │ │ ├── JobCreateReqVO.java │ │ │ │ │ │ │ │ │ ├── JobExcelVO.java │ │ │ │ │ │ │ │ │ ├── JobExportReqVO.java │ │ │ │ │ │ │ │ │ ├── JobPageReqVO.java │ │ │ │ │ │ │ │ │ ├── JobRespVO.java │ │ │ │ │ │ │ │ │ └── JobUpdateReqVO.java │ │ │ │ │ │ │ │ │ └── log │ │ │ │ │ │ │ │ │ ├── JobLogBaseVO.java │ │ │ │ │ │ │ │ │ ├── JobLogExcelVO.java │ │ │ │ │ │ │ │ │ ├── JobLogExportReqVO.java │ │ │ │ │ │ │ │ │ ├── JobLogPageReqVO.java │ │ │ │ │ │ │ │ │ └── JobLogRespVO.java │ │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ │ ├── ApiAccessLogController.java │ │ │ │ │ │ │ │ ├── ApiErrorLogController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── apiaccesslog │ │ │ │ │ │ │ │ │ ├── ApiAccessLogBaseVO.java │ │ │ │ │ │ │ │ │ ├── ApiAccessLogExcelVO.java │ │ │ │ │ │ │ │ │ ├── ApiAccessLogExportReqVO.java │ │ │ │ │ │ │ │ │ ├── ApiAccessLogPageReqVO.java │ │ │ │ │ │ │ │ │ └── ApiAccessLogRespVO.java │ │ │ │ │ │ │ │ │ └── apierrorlog │ │ │ │ │ │ │ │ │ ├── ApiErrorLogBaseVO.java │ │ │ │ │ │ │ │ │ ├── ApiErrorLogExcelVO.java │ │ │ │ │ │ │ │ │ ├── ApiErrorLogExportReqVO.java │ │ │ │ │ │ │ │ │ ├── ApiErrorLogPageReqVO.java │ │ │ │ │ │ │ │ │ └── ApiErrorLogRespVO.java │ │ │ │ │ │ │ ├── redis │ │ │ │ │ │ │ │ ├── RedisController.http │ │ │ │ │ │ │ │ ├── RedisController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── RedisKeyDefineRespVO.java │ │ │ │ │ │ │ │ │ ├── RedisKeyValueRespVO.java │ │ │ │ │ │ │ │ │ └── RedisMonitorRespVO.java │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── TestDemoController.http │ │ │ │ │ │ │ │ ├── TestDemoController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── TestDemoBaseVO.java │ │ │ │ │ │ │ │ ├── TestDemoCreateReqVO.java │ │ │ │ │ │ │ │ ├── TestDemoExcelVO.java │ │ │ │ │ │ │ │ ├── TestDemoExportReqVO.java │ │ │ │ │ │ │ │ ├── TestDemoPageReqVO.java │ │ │ │ │ │ │ │ ├── TestDemoRespVO.java │ │ │ │ │ │ │ │ └── TestDemoUpdateReqVO.java │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── convert │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ └── CodegenConvert.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── ConfigConvert.java │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ └── DataSourceConfigConvert.java │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── FileConfigConvert.java │ │ │ │ │ │ │ └── FileConvert.java │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── JobConvert.java │ │ │ │ │ │ │ └── JobLogConvert.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── ApiAccessLogConvert.java │ │ │ │ │ │ │ └── ApiErrorLogConvert.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── redis │ │ │ │ │ │ │ └── RedisConvert.java │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── TestDemoConvert.java │ │ │ │ │ │ ├── dal │ │ │ │ │ │ ├── dataobject │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ │ ├── CodegenColumnDO.java │ │ │ │ │ │ │ │ └── CodegenTableDO.java │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ └── ConfigDO.java │ │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ │ └── DataSourceConfigDO.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── FileConfigDO.java │ │ │ │ │ │ │ │ ├── FileContentDO.java │ │ │ │ │ │ │ │ └── FileDO.java │ │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ │ ├── JobDO.java │ │ │ │ │ │ │ │ └── JobLogDO.java │ │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ │ ├── ApiAccessLogDO.java │ │ │ │ │ │ │ │ └── ApiErrorLogDO.java │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── TestDemoDO.java │ │ │ │ │ │ └── mysql │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── CodegenColumnMapper.java │ │ │ │ │ │ │ └── CodegenTableMapper.java │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── ConfigMapper.java │ │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ └── DataSourceConfigMapper.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── FileConfigMapper.java │ │ │ │ │ │ │ ├── FileContentDAOImpl.java │ │ │ │ │ │ │ ├── FileContentMapper.java │ │ │ │ │ │ │ └── FileMapper.java │ │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── JobLogMapper.java │ │ │ │ │ │ │ └── JobMapper.java │ │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── ApiAccessLogMapper.java │ │ │ │ │ │ │ └── ApiErrorLogMapper.java │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── TestDemoMapper.java │ │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── CodegenColumnHtmlTypeEnum.java │ │ │ │ │ │ │ ├── CodegenColumnListConditionEnum.java │ │ │ │ │ │ │ ├── CodegenSceneEnum.java │ │ │ │ │ │ │ └── CodegenTemplateTypeEnum.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── ConfigTypeEnum.java │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── JobLogStatusEnum.java │ │ │ │ │ │ │ └── JobStatusEnum.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ └── ApiErrorLogProcessStatusEnum.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── framework │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── CodegenConfiguration.java │ │ │ │ │ │ │ │ └── CodegenProperties.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── monitor │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ └── AdminServerConfiguration.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ └── SecurityConfiguration.java │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── InfraWebConfiguration.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── mq │ │ │ │ │ │ ├── consumer │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── FileConfigRefreshConsumer.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── FileConfigRefreshMessage.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── producer │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── FileConfigProducer.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── CodegenService.java │ │ │ │ │ │ │ ├── CodegenServiceImpl.java │ │ │ │ │ │ │ └── inner │ │ │ │ │ │ │ │ ├── CodegenBuilder.java │ │ │ │ │ │ │ │ └── CodegenEngine.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ConfigService.java │ │ │ │ │ │ │ └── ConfigServiceImpl.java │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── DataSourceConfigService.java │ │ │ │ │ │ │ ├── DataSourceConfigServiceImpl.java │ │ │ │ │ │ │ ├── DatabaseTableService.java │ │ │ │ │ │ │ └── DatabaseTableServiceImpl.java │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── FileConfigService.java │ │ │ │ │ │ │ ├── FileConfigServiceImpl.java │ │ │ │ │ │ │ ├── FileService.java │ │ │ │ │ │ │ └── FileServiceImpl.java │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── JobLogService.java │ │ │ │ │ │ │ ├── JobLogServiceImpl.java │ │ │ │ │ │ │ ├── JobService.java │ │ │ │ │ │ │ └── JobServiceImpl.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── ApiAccessLogService.java │ │ │ │ │ │ │ ├── ApiAccessLogServiceImpl.java │ │ │ │ │ │ │ ├── ApiErrorLogService.java │ │ │ │ │ │ │ └── ApiErrorLogServiceImpl.java │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── TestDemoService.java │ │ │ │ │ │ │ └── TestDemoServiceImpl.java │ │ │ │ │ │ └── websocket │ │ │ │ │ │ ├── SemaphoreUtils.java │ │ │ │ │ │ ├── WebSocketConfig.java │ │ │ │ │ │ ├── WebSocketServer.java │ │ │ │ │ │ └── WebSocketUsers.java │ │ │ │ └── resources │ │ │ │ │ ├── codegen │ │ │ │ │ ├── java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ ├── controller.vm │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── _column.vm │ │ │ │ │ │ │ │ ├── baseVO.vm │ │ │ │ │ │ │ │ ├── createReqVO.vm │ │ │ │ │ │ │ │ ├── excelVO.vm │ │ │ │ │ │ │ │ ├── exportReqVO.vm │ │ │ │ │ │ │ │ ├── pageReqVO.vm │ │ │ │ │ │ │ │ ├── respVO.vm │ │ │ │ │ │ │ │ └── updateReqVO.vm │ │ │ │ │ │ ├── convert │ │ │ │ │ │ │ └── convert.vm │ │ │ │ │ │ ├── dal │ │ │ │ │ │ │ ├── do.vm │ │ │ │ │ │ │ ├── mapper.vm │ │ │ │ │ │ │ └── mapper.xml.vm │ │ │ │ │ │ ├── enums │ │ │ │ │ │ │ └── errorcode.vm │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── service.vm │ │ │ │ │ │ │ └── serviceImpl.vm │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── serviceTest.vm │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── h2.vm │ │ │ │ │ │ └── sql.vm │ │ │ │ │ ├── vue │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── api.js.vm │ │ │ │ │ │ └── views │ │ │ │ │ │ │ └── index.vue.vm │ │ │ │ │ └── vue3 │ │ │ │ │ │ ├── api │ │ │ │ │ │ └── api.ts.vm │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── data.ts.vm │ │ │ │ │ │ └── index.vue.vm │ │ │ │ │ ├── file │ │ │ │ │ └── erweima.jpg │ │ │ │ │ └── mapper │ │ │ │ │ ├── test │ │ │ │ │ └── TestDemoMapper.xml │ │ │ │ │ └── 占位 │ │ │ │ ├── test-integration │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── infra │ │ │ │ │ ├── dal │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ └── SchemaColumnMapperTest.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── service │ │ │ │ │ ├── codegen │ │ │ │ │ │ ├── CodegenEngineTest.java │ │ │ │ │ │ ├── CodegenSQLParserTest.java │ │ │ │ │ │ └── CodegenServiceImplTest.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── test │ │ │ │ │ ├── BaseDbAndRedisIntegrationTest.java │ │ │ │ │ └── BaseRedisIntegrationTest.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── infra │ │ │ │ │ └── service │ │ │ │ │ ├── DefaultDatabaseQueryTest.java │ │ │ │ │ ├── config │ │ │ │ │ └── ConfigServiceImplTest.java │ │ │ │ │ ├── db │ │ │ │ │ ├── DataSourceConfigServiceImplTest.java │ │ │ │ │ └── DatabaseTableServiceImplTest.java │ │ │ │ │ ├── file │ │ │ │ │ ├── FileConfigServiceImplTest.java │ │ │ │ │ └── FileServiceImplTest.java │ │ │ │ │ ├── job │ │ │ │ │ ├── JobLogServiceImplTest.java │ │ │ │ │ └── JobServiceImplTest.java │ │ │ │ │ ├── logger │ │ │ │ │ ├── ApiAccessLogServiceImplTest.java │ │ │ │ │ └── ApiErrorLogServiceImplTest.java │ │ │ │ │ └── test │ │ │ │ │ └── TestDemoServiceImplTest.java │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clean.sql │ │ │ │ └── create_tables.sql │ │ └── pom.xml │ ├── metaxk-module-member │ │ ├── metaxk-module-member-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── member │ │ │ │ ├── api │ │ │ │ ├── address │ │ │ │ │ ├── AddressApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── AddressRespDTO.java │ │ │ │ ├── package-info.java │ │ │ │ └── user │ │ │ │ │ ├── MemberUserApi.java │ │ │ │ │ └── dto │ │ │ │ │ └── MemberUserRespDTO.java │ │ │ │ └── enums │ │ │ │ └── ErrorCodeConstants.java │ │ ├── metaxk-module-member-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── member │ │ │ │ │ ├── api │ │ │ │ │ ├── address │ │ │ │ │ │ └── AddressApiImpl.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── user │ │ │ │ │ │ └── MemberUserApiImpl.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── app │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ ├── AppAddressController.http │ │ │ │ │ │ │ ├── AppAddressController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── AppAddressBaseVO.java │ │ │ │ │ │ │ │ ├── AppAddressCreateReqVO.java │ │ │ │ │ │ │ │ ├── AppAddressRespVO.java │ │ │ │ │ │ │ │ └── AppAddressUpdateReqVO.java │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── AppAuthController.http │ │ │ │ │ │ │ ├── AppAuthController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── AppAuthCheckCodeReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthLoginReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthLoginRespVO.java │ │ │ │ │ │ │ │ ├── AppAuthResetPasswordReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthSmsLoginReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthSmsSendReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthSocialLoginReqVO.java │ │ │ │ │ │ │ │ ├── AppAuthUpdatePasswordReqVO.java │ │ │ │ │ │ │ │ └── AppAuthWeixinMiniAppLoginReqVO.java │ │ │ │ │ │ ├── social │ │ │ │ │ │ │ ├── AppSocialUserController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── AppSocialUserBindReqVO.java │ │ │ │ │ │ │ │ └── AppSocialUserUnbindReqVO.java │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ ├── AppUserController.http │ │ │ │ │ │ │ ├── AppUserController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── AppUserInfoRespVO.java │ │ │ │ │ │ │ │ └── AppUserUpdateMobileReqVO.java │ │ │ │ │ │ └── weixin │ │ │ │ │ │ │ ├── AppWxMpController.http │ │ │ │ │ │ │ └── AppWxMpController.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── convert │ │ │ │ │ ├── address │ │ │ │ │ │ └── AddressConvert.java │ │ │ │ │ ├── auth │ │ │ │ │ │ └── AuthConvert.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── social │ │ │ │ │ │ └── SocialUserConvert.java │ │ │ │ │ └── user │ │ │ │ │ │ └── UserConvert.java │ │ │ │ │ ├── dal │ │ │ │ │ ├── dataobject │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ └── AddressDO.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── MemberUserDO.java │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ └── AddressMapper.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── MemberUserMapper.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── redis │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── framework │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── web │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MemberWebConfiguration.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── service │ │ │ │ │ ├── address │ │ │ │ │ ├── AddressService.java │ │ │ │ │ └── AddressServiceImpl.java │ │ │ │ │ ├── auth │ │ │ │ │ ├── MemberAuthService.java │ │ │ │ │ └── MemberAuthServiceImpl.java │ │ │ │ │ └── user │ │ │ │ │ ├── MemberUserService.java │ │ │ │ │ └── MemberUserServiceImpl.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── member │ │ │ │ │ └── service │ │ │ │ │ ├── address │ │ │ │ │ └── AddressServiceImplTest.java │ │ │ │ │ ├── auth │ │ │ │ │ └── MemberAuthServiceTest.java │ │ │ │ │ └── user │ │ │ │ │ └── MemberUserServiceImplTest.java │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clean.sql │ │ │ │ └── create_tables.sql │ │ └── pom.xml │ ├── metaxk-module-report │ │ ├── metaxk-module-report-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── report │ │ │ │ ├── api │ │ │ │ └── package-info.java │ │ │ │ └── enums │ │ │ │ └── ErrorCodeConstants.java │ │ ├── metaxk-module-report-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── report │ │ │ │ │ ├── controller │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── ajreport │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── goview │ │ │ │ │ │ │ ├── GoViewDataController.java │ │ │ │ │ │ │ ├── GoViewProjectController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── GoViewDataGetBySqlReqVO.java │ │ │ │ │ │ │ └── GoViewDataRespVO.java │ │ │ │ │ │ │ └── project │ │ │ │ │ │ │ ├── GoViewProjectCreateReqVO.java │ │ │ │ │ │ │ ├── GoViewProjectRespVO.java │ │ │ │ │ │ │ └── GoViewProjectUpdateReqVO.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── convert │ │ │ │ │ ├── ajreport │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── goview │ │ │ │ │ │ └── GoViewProjectConvert.java │ │ │ │ │ ├── dal │ │ │ │ │ ├── dataobject │ │ │ │ │ │ ├── ajreport │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── goview │ │ │ │ │ │ │ └── GoViewProjectDO.java │ │ │ │ │ └── mysql │ │ │ │ │ │ ├── ajreport │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── goview │ │ │ │ │ │ └── GoViewProjectMapper.java │ │ │ │ │ ├── framework │ │ │ │ │ ├── jmreport │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── JmReportConfiguration.java │ │ │ │ │ │ └── core │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ └── JmReportTokenServiceImpl.java │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── security │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── SecurityConfiguration.java │ │ │ │ │ │ └── core │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── ureport │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── service │ │ │ │ │ ├── ajreport │ │ │ │ │ └── package-info.java │ │ │ │ │ └── goview │ │ │ │ │ ├── GoViewDataService.java │ │ │ │ │ ├── GoViewDataServiceImpl.java │ │ │ │ │ ├── GoViewProjectService.java │ │ │ │ │ └── GoViewProjectServiceImpl.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── report │ │ │ │ │ └── service │ │ │ │ │ └── goview │ │ │ │ │ ├── GoViewDataServiceImplTest.java │ │ │ │ │ └── GoViewProjectServiceImplTest.java │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clean.sql │ │ │ │ └── create_tables.sql │ │ └── pom.xml │ ├── metaxk-module-system │ │ ├── metaxk-module-system-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── system │ │ │ │ ├── api │ │ │ │ ├── dept │ │ │ │ │ ├── DeptApi.java │ │ │ │ │ ├── PostApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── DeptRespDTO.java │ │ │ │ ├── dict │ │ │ │ │ ├── DictDataApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── DictDataRespDTO.java │ │ │ │ ├── errorcode │ │ │ │ │ ├── ErrorCodeApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── ErrorCodeAutoGenerateReqDTO.java │ │ │ │ │ │ └── ErrorCodeRespDTO.java │ │ │ │ ├── logger │ │ │ │ │ ├── LoginLogApi.java │ │ │ │ │ ├── OperateLogApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── LoginLogCreateReqDTO.java │ │ │ │ │ │ └── OperateLogCreateReqDTO.java │ │ │ │ ├── mail │ │ │ │ │ ├── MailSendApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── MailSendSingleToUserReqDTO.java │ │ │ │ ├── notify │ │ │ │ │ ├── NotifyMessageSendApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── NotifySendSingleToUserReqDTO.java │ │ │ │ ├── oauth2 │ │ │ │ │ ├── OAuth2TokenApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── OAuth2AccessTokenCheckRespDTO.java │ │ │ │ │ │ ├── OAuth2AccessTokenCreateReqDTO.java │ │ │ │ │ │ └── OAuth2AccessTokenRespDTO.java │ │ │ │ ├── package-info.java │ │ │ │ ├── permission │ │ │ │ │ ├── PermissionApi.java │ │ │ │ │ ├── RoleApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── DeptDataPermissionRespDTO.java │ │ │ │ ├── sensitiveword │ │ │ │ │ └── SensitiveWordApi.java │ │ │ │ ├── sms │ │ │ │ │ ├── SmsCodeApi.java │ │ │ │ │ ├── SmsSendApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── code │ │ │ │ │ │ ├── SmsCodeSendReqDTO.java │ │ │ │ │ │ ├── SmsCodeUseReqDTO.java │ │ │ │ │ │ └── SmsCodeValidateReqDTO.java │ │ │ │ │ │ └── send │ │ │ │ │ │ └── SmsSendSingleToUserReqDTO.java │ │ │ │ ├── social │ │ │ │ │ ├── SocialUserApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── SocialUserBindReqDTO.java │ │ │ │ │ │ └── SocialUserUnbindReqDTO.java │ │ │ │ ├── tenant │ │ │ │ │ └── TenantApi.java │ │ │ │ └── user │ │ │ │ │ ├── AdminUserApi.java │ │ │ │ │ └── dto │ │ │ │ │ └── AdminUserRespDTO.java │ │ │ │ └── enums │ │ │ │ ├── DictTypeConstants.java │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ ├── common │ │ │ │ └── SexEnum.java │ │ │ │ ├── dept │ │ │ │ └── DeptIdEnum.java │ │ │ │ ├── errorcode │ │ │ │ └── ErrorCodeTypeEnum.java │ │ │ │ ├── logger │ │ │ │ ├── LoginLogTypeEnum.java │ │ │ │ └── LoginResultEnum.java │ │ │ │ ├── mail │ │ │ │ └── MailSendStatusEnum.java │ │ │ │ ├── notice │ │ │ │ └── NoticeTypeEnum.java │ │ │ │ ├── oauth2 │ │ │ │ ├── OAuth2ClientConstants.java │ │ │ │ └── OAuth2GrantTypeEnum.java │ │ │ │ ├── permission │ │ │ │ ├── DataScopeEnum.java │ │ │ │ ├── MenuTypeEnum.java │ │ │ │ ├── RoleCodeEnum.java │ │ │ │ └── RoleTypeEnum.java │ │ │ │ ├── sms │ │ │ │ ├── SmsReceiveStatusEnum.java │ │ │ │ ├── SmsSceneEnum.java │ │ │ │ ├── SmsSendStatusEnum.java │ │ │ │ └── SmsTemplateTypeEnum.java │ │ │ │ └── social │ │ │ │ └── SocialTypeEnum.java │ │ ├── metaxk-module-system-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── system │ │ │ │ │ ├── api │ │ │ │ │ ├── dept │ │ │ │ │ │ ├── DeptApiImpl.java │ │ │ │ │ │ └── PostApiImpl.java │ │ │ │ │ ├── dict │ │ │ │ │ │ └── DictDataApiImpl.java │ │ │ │ │ ├── errorcode │ │ │ │ │ │ └── ErrorCodeApiImpl.java │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── LoginLogApiImpl.java │ │ │ │ │ │ └── OperateLogApiImpl.java │ │ │ │ │ ├── mail │ │ │ │ │ │ └── MailSendApiImpl.java │ │ │ │ │ ├── notify │ │ │ │ │ │ └── NotifyMessageSendApiImpl.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ └── OAuth2TokenApiImpl.java │ │ │ │ │ ├── permission │ │ │ │ │ │ ├── PermissionApiImpl.java │ │ │ │ │ │ └── RoleApiImpl.java │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ └── SensitiveWordApiImpl.java │ │ │ │ │ ├── sms │ │ │ │ │ │ ├── SmsCodeApiImpl.java │ │ │ │ │ │ └── SmsSendApiImpl.java │ │ │ │ │ ├── social │ │ │ │ │ │ └── SocialUserApiImpl.java │ │ │ │ │ ├── tenant │ │ │ │ │ │ └── TenantApiImpl.java │ │ │ │ │ └── user │ │ │ │ │ │ └── AdminUserApiImpl.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── AuthController.http │ │ │ │ │ │ │ ├── AuthController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── AuthLoginReqVO.java │ │ │ │ │ │ │ │ ├── AuthLoginRespVO.java │ │ │ │ │ │ │ │ ├── AuthMenuRespVO.java │ │ │ │ │ │ │ │ ├── AuthPermissionInfoRespVO.java │ │ │ │ │ │ │ │ ├── AuthSmsLoginReqVO.java │ │ │ │ │ │ │ │ ├── AuthSmsSendReqVO.java │ │ │ │ │ │ │ │ └── AuthSocialLoginReqVO.java │ │ │ │ │ │ ├── captcha │ │ │ │ │ │ │ └── CaptchaController.java │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ ├── DeptController.java │ │ │ │ │ │ │ ├── PostController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ │ ├── DeptBaseVO.java │ │ │ │ │ │ │ │ ├── DeptCreateReqVO.java │ │ │ │ │ │ │ │ ├── DeptListReqVO.java │ │ │ │ │ │ │ │ ├── DeptRespVO.java │ │ │ │ │ │ │ │ ├── DeptSimpleRespVO.java │ │ │ │ │ │ │ │ └── DeptUpdateReqVO.java │ │ │ │ │ │ │ │ └── post │ │ │ │ │ │ │ │ ├── PostBaseVO.java │ │ │ │ │ │ │ │ ├── PostCreateReqVO.java │ │ │ │ │ │ │ │ ├── PostExcelVO.java │ │ │ │ │ │ │ │ ├── PostExportReqVO.java │ │ │ │ │ │ │ │ ├── PostListReqVO.java │ │ │ │ │ │ │ │ ├── PostPageReqVO.java │ │ │ │ │ │ │ │ ├── PostRespVO.java │ │ │ │ │ │ │ │ ├── PostSimpleRespVO.java │ │ │ │ │ │ │ │ └── PostUpdateReqVO.java │ │ │ │ │ │ ├── dict │ │ │ │ │ │ │ ├── DictDataController.http │ │ │ │ │ │ │ ├── DictDataController.java │ │ │ │ │ │ │ ├── DictTypeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── DictDataBaseVO.java │ │ │ │ │ │ │ │ ├── DictDataCreateReqVO.java │ │ │ │ │ │ │ │ ├── DictDataExcelVO.java │ │ │ │ │ │ │ │ ├── DictDataExportReqVO.java │ │ │ │ │ │ │ │ ├── DictDataPageReqVO.java │ │ │ │ │ │ │ │ ├── DictDataRespVO.java │ │ │ │ │ │ │ │ ├── DictDataSimpleRespVO.java │ │ │ │ │ │ │ │ └── DictDataUpdateReqVO.java │ │ │ │ │ │ │ │ └── type │ │ │ │ │ │ │ │ ├── DictTypeBaseVO.java │ │ │ │ │ │ │ │ ├── DictTypeCreateReqVO.java │ │ │ │ │ │ │ │ ├── DictTypeExcelVO.java │ │ │ │ │ │ │ │ ├── DictTypeExportReqVO.java │ │ │ │ │ │ │ │ ├── DictTypePageReqVO.java │ │ │ │ │ │ │ │ ├── DictTypeRespVO.java │ │ │ │ │ │ │ │ ├── DictTypeSimpleRespVO.java │ │ │ │ │ │ │ │ └── DictTypeUpdateReqVO.java │ │ │ │ │ │ ├── errorcode │ │ │ │ │ │ │ ├── ErrorCodeController.http │ │ │ │ │ │ │ ├── ErrorCodeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── ErrorCodeBaseVO.java │ │ │ │ │ │ │ │ ├── ErrorCodeCreateReqVO.java │ │ │ │ │ │ │ │ ├── ErrorCodeExcelVO.java │ │ │ │ │ │ │ │ ├── ErrorCodeExportReqVO.java │ │ │ │ │ │ │ │ ├── ErrorCodePageReqVO.java │ │ │ │ │ │ │ │ ├── ErrorCodeRespVO.java │ │ │ │ │ │ │ │ └── ErrorCodeUpdateReqVO.java │ │ │ │ │ │ ├── ip │ │ │ │ │ │ │ ├── AreaController.http │ │ │ │ │ │ │ ├── AreaController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ └── AreaNodeRespVO.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── LoginLogController.java │ │ │ │ │ │ │ ├── OperateLogController.http │ │ │ │ │ │ │ ├── OperateLogController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── loginlog │ │ │ │ │ │ │ │ ├── LoginLogBaseVO.java │ │ │ │ │ │ │ │ ├── LoginLogExcelVO.java │ │ │ │ │ │ │ │ ├── LoginLogExportReqVO.java │ │ │ │ │ │ │ │ ├── LoginLogPageReqVO.java │ │ │ │ │ │ │ │ └── LoginLogRespVO.java │ │ │ │ │ │ │ │ └── operatelog │ │ │ │ │ │ │ │ ├── OperateLogBaseVO.java │ │ │ │ │ │ │ │ ├── OperateLogExcelVO.java │ │ │ │ │ │ │ │ ├── OperateLogExportReqVO.java │ │ │ │ │ │ │ │ ├── OperateLogPageReqVO.java │ │ │ │ │ │ │ │ └── OperateLogRespVO.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── MailAccountController.java │ │ │ │ │ │ │ ├── MailLogController.java │ │ │ │ │ │ │ ├── MailTemplateController.http │ │ │ │ │ │ │ ├── MailTemplateController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── account │ │ │ │ │ │ │ │ ├── MailAccountBaseVO.java │ │ │ │ │ │ │ │ ├── MailAccountCreateReqVO.java │ │ │ │ │ │ │ │ ├── MailAccountPageReqVO.java │ │ │ │ │ │ │ │ ├── MailAccountRespVO.java │ │ │ │ │ │ │ │ ├── MailAccountSimpleRespVO.java │ │ │ │ │ │ │ │ └── MailAccountUpdateReqVO.java │ │ │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ │ ├── MailLogBaseVO.java │ │ │ │ │ │ │ │ ├── MailLogPageReqVO.java │ │ │ │ │ │ │ │ └── MailLogRespVO.java │ │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ ├── MailTemplateBaseVO.java │ │ │ │ │ │ │ │ ├── MailTemplateCreateReqVO.java │ │ │ │ │ │ │ │ ├── MailTemplatePageReqVO.java │ │ │ │ │ │ │ │ ├── MailTemplateRespVO.java │ │ │ │ │ │ │ │ ├── MailTemplateSendReqVO.java │ │ │ │ │ │ │ │ ├── MailTemplateSimpleRespVO.java │ │ │ │ │ │ │ │ └── MailTemplateUpdateReqVO.java │ │ │ │ │ │ ├── notice │ │ │ │ │ │ │ ├── NoticeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── NoticeBaseVO.java │ │ │ │ │ │ │ │ ├── NoticeCreateReqVO.java │ │ │ │ │ │ │ │ ├── NoticePageReqVO.java │ │ │ │ │ │ │ │ ├── NoticeRespVO.java │ │ │ │ │ │ │ │ └── NoticeUpdateReqVO.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ ├── NotifyMessageController.java │ │ │ │ │ │ │ ├── NotifyTemplateController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ │ ├── NotifyMessageBaseVO.java │ │ │ │ │ │ │ │ ├── NotifyMessageMyPageReqVO.java │ │ │ │ │ │ │ │ ├── NotifyMessagePageReqVO.java │ │ │ │ │ │ │ │ └── NotifyMessageRespVO.java │ │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ ├── NotifyTemplateBaseVO.java │ │ │ │ │ │ │ │ ├── NotifyTemplateCreateReqVO.java │ │ │ │ │ │ │ │ ├── NotifyTemplatePageReqVO.java │ │ │ │ │ │ │ │ ├── NotifyTemplateRespVO.java │ │ │ │ │ │ │ │ ├── NotifyTemplateSendReqVO.java │ │ │ │ │ │ │ │ └── NotifyTemplateUpdateReqVO.java │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ ├── OAuth2ClientController.http │ │ │ │ │ │ │ ├── OAuth2ClientController.java │ │ │ │ │ │ │ ├── OAuth2OpenController.http │ │ │ │ │ │ │ ├── OAuth2OpenController.java │ │ │ │ │ │ │ ├── OAuth2TokenController.java │ │ │ │ │ │ │ ├── OAuth2UserController.http │ │ │ │ │ │ │ ├── OAuth2UserController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── OAuth2ClientBaseVO.java │ │ │ │ │ │ │ │ ├── OAuth2ClientCreateReqVO.java │ │ │ │ │ │ │ │ ├── OAuth2ClientPageReqVO.java │ │ │ │ │ │ │ │ ├── OAuth2ClientRespVO.java │ │ │ │ │ │ │ │ └── OAuth2ClientUpdateReqVO.java │ │ │ │ │ │ │ │ ├── open │ │ │ │ │ │ │ │ ├── OAuth2OpenAccessTokenRespVO.java │ │ │ │ │ │ │ │ ├── OAuth2OpenAuthorizeInfoRespVO.java │ │ │ │ │ │ │ │ └── OAuth2OpenCheckTokenRespVO.java │ │ │ │ │ │ │ │ ├── token │ │ │ │ │ │ │ │ ├── OAuth2AccessTokenPageReqVO.java │ │ │ │ │ │ │ │ └── OAuth2AccessTokenRespVO.java │ │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ ├── OAuth2UserInfoRespVO.java │ │ │ │ │ │ │ │ └── OAuth2UserUpdateReqVO.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── MenuController.http │ │ │ │ │ │ │ ├── MenuController.java │ │ │ │ │ │ │ ├── PermissionController.java │ │ │ │ │ │ │ ├── RoleController.http │ │ │ │ │ │ │ ├── RoleController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ │ ├── MenuBaseVO.java │ │ │ │ │ │ │ │ ├── MenuCreateReqVO.java │ │ │ │ │ │ │ │ ├── MenuListReqVO.java │ │ │ │ │ │ │ │ ├── MenuRespVO.java │ │ │ │ │ │ │ │ ├── MenuSimpleRespVO.java │ │ │ │ │ │ │ │ └── MenuUpdateReqVO.java │ │ │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ │ ├── PermissionAssignRoleDataScopeReqVO.java │ │ │ │ │ │ │ │ ├── PermissionAssignRoleMenuReqVO.java │ │ │ │ │ │ │ │ └── PermissionAssignUserRoleReqVO.java │ │ │ │ │ │ │ │ └── role │ │ │ │ │ │ │ │ ├── RoleBaseVO.java │ │ │ │ │ │ │ │ ├── RoleCreateReqVO.java │ │ │ │ │ │ │ │ ├── RoleExcelVO.java │ │ │ │ │ │ │ │ ├── RoleExportReqVO.java │ │ │ │ │ │ │ │ ├── RolePageReqVO.java │ │ │ │ │ │ │ │ ├── RoleRespVO.java │ │ │ │ │ │ │ │ ├── RoleSimpleRespVO.java │ │ │ │ │ │ │ │ ├── RoleUpdateReqVO.java │ │ │ │ │ │ │ │ └── RoleUpdateStatusReqVO.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ │ ├── SensitiveWordController.http │ │ │ │ │ │ │ ├── SensitiveWordController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── SensitiveWordBaseVO.java │ │ │ │ │ │ │ │ ├── SensitiveWordCreateReqVO.java │ │ │ │ │ │ │ │ ├── SensitiveWordExcelVO.java │ │ │ │ │ │ │ │ ├── SensitiveWordExportReqVO.java │ │ │ │ │ │ │ │ ├── SensitiveWordPageReqVO.java │ │ │ │ │ │ │ │ ├── SensitiveWordRespVO.java │ │ │ │ │ │ │ │ └── SensitiveWordUpdateReqVO.java │ │ │ │ │ │ ├── sms │ │ │ │ │ │ │ ├── SmsCallbackController.java │ │ │ │ │ │ │ ├── SmsChannelController.java │ │ │ │ │ │ │ ├── SmsLogController.java │ │ │ │ │ │ │ ├── SmsTemplateController.http │ │ │ │ │ │ │ ├── SmsTemplateController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── channel │ │ │ │ │ │ │ │ ├── SmsChannelBaseVO.java │ │ │ │ │ │ │ │ ├── SmsChannelCreateReqVO.java │ │ │ │ │ │ │ │ ├── SmsChannelPageReqVO.java │ │ │ │ │ │ │ │ ├── SmsChannelRespVO.java │ │ │ │ │ │ │ │ ├── SmsChannelSimpleRespVO.java │ │ │ │ │ │ │ │ └── SmsChannelUpdateReqVO.java │ │ │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ │ ├── SmsLogExcelVO.java │ │ │ │ │ │ │ │ ├── SmsLogExportReqVO.java │ │ │ │ │ │ │ │ ├── SmsLogPageReqVO.java │ │ │ │ │ │ │ │ └── SmsLogRespVO.java │ │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ │ ├── SmsTemplateBaseVO.java │ │ │ │ │ │ │ │ ├── SmsTemplateCreateReqVO.java │ │ │ │ │ │ │ │ ├── SmsTemplateExcelVO.java │ │ │ │ │ │ │ │ ├── SmsTemplateExportReqVO.java │ │ │ │ │ │ │ │ ├── SmsTemplatePageReqVO.java │ │ │ │ │ │ │ │ ├── SmsTemplateRespVO.java │ │ │ │ │ │ │ │ ├── SmsTemplateSendReqVO.java │ │ │ │ │ │ │ │ └── SmsTemplateUpdateReqVO.java │ │ │ │ │ │ ├── socail │ │ │ │ │ │ │ ├── SocialUserController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── SocialUserBindReqVO.java │ │ │ │ │ │ │ │ └── SocialUserUnbindReqVO.java │ │ │ │ │ │ ├── tenant │ │ │ │ │ │ │ ├── TenantController.http │ │ │ │ │ │ │ ├── TenantController.java │ │ │ │ │ │ │ ├── TenantPackageController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── TenantPackageBaseVO.java │ │ │ │ │ │ │ │ ├── TenantPackageCreateReqVO.java │ │ │ │ │ │ │ │ ├── TenantPackagePageReqVO.java │ │ │ │ │ │ │ │ ├── TenantPackageRespVO.java │ │ │ │ │ │ │ │ ├── TenantPackageSimpleRespVO.java │ │ │ │ │ │ │ │ └── TenantPackageUpdateReqVO.java │ │ │ │ │ │ │ │ └── tenant │ │ │ │ │ │ │ │ ├── TenantBaseVO.java │ │ │ │ │ │ │ │ ├── TenantCreateReqVO.java │ │ │ │ │ │ │ │ ├── TenantExcelVO.java │ │ │ │ │ │ │ │ ├── TenantExportReqVO.java │ │ │ │ │ │ │ │ ├── TenantPageReqVO.java │ │ │ │ │ │ │ │ ├── TenantRespVO.java │ │ │ │ │ │ │ │ └── TenantUpdateReqVO.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── UserController.http │ │ │ │ │ │ │ ├── UserController.java │ │ │ │ │ │ │ ├── UserProfileController.http │ │ │ │ │ │ │ ├── UserProfileController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── profile │ │ │ │ │ │ │ ├── UserProfileRespVO.java │ │ │ │ │ │ │ ├── UserProfileUpdatePasswordReqVO.java │ │ │ │ │ │ │ └── UserProfileUpdateReqVO.java │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── UserBaseVO.java │ │ │ │ │ │ │ ├── UserCreateReqVO.java │ │ │ │ │ │ │ ├── UserExcelVO.java │ │ │ │ │ │ │ ├── UserExportReqVO.java │ │ │ │ │ │ │ ├── UserImportExcelVO.java │ │ │ │ │ │ │ ├── UserImportRespVO.java │ │ │ │ │ │ │ ├── UserPageItemRespVO.java │ │ │ │ │ │ │ ├── UserPageReqVO.java │ │ │ │ │ │ │ ├── UserRespVO.java │ │ │ │ │ │ │ ├── UserSimpleRespVO.java │ │ │ │ │ │ │ ├── UserUpdatePasswordReqVO.java │ │ │ │ │ │ │ ├── UserUpdateReqVO.java │ │ │ │ │ │ │ └── UserUpdateStatusReqVO.java │ │ │ │ │ ├── app │ │ │ │ │ │ ├── dict │ │ │ │ │ │ │ └── AppDictDataController.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── convert │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── AuthConvert.java │ │ │ │ │ │ ├── OAuth2ClientConvert.java │ │ │ │ │ │ └── OAuth2TokenConvert.java │ │ │ │ │ ├── dept │ │ │ │ │ │ ├── DeptConvert.java │ │ │ │ │ │ └── PostConvert.java │ │ │ │ │ ├── dict │ │ │ │ │ │ ├── DictDataConvert.java │ │ │ │ │ │ └── DictTypeConvert.java │ │ │ │ │ ├── errorcode │ │ │ │ │ │ └── ErrorCodeConvert.java │ │ │ │ │ ├── ip │ │ │ │ │ │ └── AreaConvert.java │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── LoginLogConvert.java │ │ │ │ │ │ └── OperateLogConvert.java │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── MailAccountConvert.java │ │ │ │ │ │ ├── MailLogConvert.java │ │ │ │ │ │ └── MailTemplateConvert.java │ │ │ │ │ ├── notice │ │ │ │ │ │ └── NoticeConvert.java │ │ │ │ │ ├── notify │ │ │ │ │ │ ├── NotifyMessageConvert.java │ │ │ │ │ │ └── NotifyTemplateConvert.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── OAuth2OpenConvert.java │ │ │ │ │ │ └── OAuth2UserConvert.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── permission │ │ │ │ │ │ ├── MenuConvert.java │ │ │ │ │ │ └── RoleConvert.java │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ └── SensitiveWordConvert.java │ │ │ │ │ ├── sms │ │ │ │ │ │ ├── SmsChannelConvert.java │ │ │ │ │ │ ├── SmsLogConvert.java │ │ │ │ │ │ └── SmsTemplateConvert.java │ │ │ │ │ ├── social │ │ │ │ │ │ └── SocialUserConvert.java │ │ │ │ │ ├── tenant │ │ │ │ │ │ ├── TenantConvert.java │ │ │ │ │ │ └── TenantPackageConvert.java │ │ │ │ │ └── user │ │ │ │ │ │ └── UserConvert.java │ │ │ │ │ ├── dal │ │ │ │ │ ├── dataobject │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ ├── DeptDO.java │ │ │ │ │ │ │ ├── PostDO.java │ │ │ │ │ │ │ └── UserPostDO.java │ │ │ │ │ │ ├── dict │ │ │ │ │ │ │ ├── DictDataDO.java │ │ │ │ │ │ │ └── DictTypeDO.java │ │ │ │ │ │ ├── errorcode │ │ │ │ │ │ │ └── ErrorCodeDO.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── LoginLogDO.java │ │ │ │ │ │ │ └── OperateLogDO.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── MailAccountDO.java │ │ │ │ │ │ │ ├── MailLogDO.java │ │ │ │ │ │ │ └── MailTemplateDO.java │ │ │ │ │ │ ├── notice │ │ │ │ │ │ │ └── NoticeDO.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ ├── NotifyMessageDO.java │ │ │ │ │ │ │ └── NotifyTemplateDO.java │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ ├── OAuth2AccessTokenDO.java │ │ │ │ │ │ │ ├── OAuth2ApproveDO.java │ │ │ │ │ │ │ ├── OAuth2ClientDO.java │ │ │ │ │ │ │ ├── OAuth2CodeDO.java │ │ │ │ │ │ │ └── OAuth2RefreshTokenDO.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── MenuDO.java │ │ │ │ │ │ │ ├── RoleDO.java │ │ │ │ │ │ │ ├── RoleMenuDO.java │ │ │ │ │ │ │ └── UserRoleDO.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ │ └── SensitiveWordDO.java │ │ │ │ │ │ ├── sms │ │ │ │ │ │ │ ├── SmsChannelDO.java │ │ │ │ │ │ │ ├── SmsCodeDO.java │ │ │ │ │ │ │ ├── SmsLogDO.java │ │ │ │ │ │ │ └── SmsTemplateDO.java │ │ │ │ │ │ ├── social │ │ │ │ │ │ │ ├── SocialUserBindDO.java │ │ │ │ │ │ │ └── SocialUserDO.java │ │ │ │ │ │ ├── tenant │ │ │ │ │ │ │ ├── TenantDO.java │ │ │ │ │ │ │ └── TenantPackageDO.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── AdminUserDO.java │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ ├── DeptMapper.java │ │ │ │ │ │ │ ├── PostMapper.java │ │ │ │ │ │ │ └── UserPostMapper.java │ │ │ │ │ │ ├── dict │ │ │ │ │ │ │ ├── DictDataMapper.java │ │ │ │ │ │ │ └── DictTypeMapper.java │ │ │ │ │ │ ├── errorcode │ │ │ │ │ │ │ └── ErrorCodeMapper.java │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── LoginLogMapper.java │ │ │ │ │ │ │ └── OperateLogMapper.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── MailAccountMapper.java │ │ │ │ │ │ │ ├── MailLogMapper.java │ │ │ │ │ │ │ └── MailTemplateMapper.java │ │ │ │ │ │ ├── notice │ │ │ │ │ │ │ └── NoticeMapper.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ ├── NotifyMessageMapper.java │ │ │ │ │ │ │ └── NotifyTemplateMapper.java │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ │ ├── OAuth2AccessTokenMapper.java │ │ │ │ │ │ │ ├── OAuth2ApproveMapper.java │ │ │ │ │ │ │ ├── OAuth2ClientMapper.java │ │ │ │ │ │ │ ├── OAuth2CodeMapper.java │ │ │ │ │ │ │ └── OAuth2RefreshTokenMapper.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── MenuMapper.java │ │ │ │ │ │ │ ├── RoleMapper.java │ │ │ │ │ │ │ ├── RoleMenuMapper.java │ │ │ │ │ │ │ └── UserRoleMapper.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ │ └── SensitiveWordMapper.java │ │ │ │ │ │ ├── sms │ │ │ │ │ │ │ ├── SmsChannelMapper.java │ │ │ │ │ │ │ ├── SmsCodeMapper.java │ │ │ │ │ │ │ ├── SmsLogMapper.java │ │ │ │ │ │ │ └── SmsTemplateMapper.java │ │ │ │ │ │ ├── social │ │ │ │ │ │ │ ├── SocialUserBindMapper.java │ │ │ │ │ │ │ └── SocialUserMapper.java │ │ │ │ │ │ ├── tenant │ │ │ │ │ │ │ ├── TenantMapper.java │ │ │ │ │ │ │ └── TenantPackageMapper.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── AdminUserMapper.java │ │ │ │ │ └── redis │ │ │ │ │ │ ├── RedisKeyConstants.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── CaptchaRedisDAO.java │ │ │ │ │ │ └── oauth2 │ │ │ │ │ │ └── OAuth2AccessTokenRedisDAO.java │ │ │ │ │ ├── framework │ │ │ │ │ ├── datapermission │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── DataPermissionConfiguration.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── sms │ │ │ │ │ │ ├── SmsCodeConfiguration.java │ │ │ │ │ │ └── SmsCodeProperties.java │ │ │ │ │ └── web │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── SystemWebConfiguration.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── job │ │ │ │ │ ├── DemoJob.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── mq │ │ │ │ │ ├── consumer │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── OAuth2ClientRefreshConsumer.java │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ └── DeptRefreshConsumer.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── MailAccountRefreshConsumer.java │ │ │ │ │ │ │ ├── MailSendConsumer.java │ │ │ │ │ │ │ └── MailTemplateRefreshConsumer.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ └── NotifyTemplateRefreshConsumer.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── MenuRefreshConsumer.java │ │ │ │ │ │ │ ├── RoleMenuRefreshConsumer.java │ │ │ │ │ │ │ ├── RoleRefreshConsumer.java │ │ │ │ │ │ │ └── UserRoleRefreshConsumer.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ │ └── SensitiveWordRefreshConsumer.java │ │ │ │ │ │ └── sms │ │ │ │ │ │ │ ├── SmsChannelRefreshConsumer.java │ │ │ │ │ │ │ ├── SmsSendConsumer.java │ │ │ │ │ │ │ └── SmsTemplateRefreshConsumer.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── OAuth2ClientRefreshMessage.java │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ └── DeptRefreshMessage.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── MailAccountRefreshMessage.java │ │ │ │ │ │ │ ├── MailSendMessage.java │ │ │ │ │ │ │ └── MailTemplateRefreshMessage.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ │ └── NotifyTemplateRefreshMessage.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── MenuRefreshMessage.java │ │ │ │ │ │ │ ├── RoleMenuRefreshMessage.java │ │ │ │ │ │ │ ├── RoleRefreshMessage.java │ │ │ │ │ │ │ └── UserRoleRefreshMessage.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ │ └── SensitiveWordRefreshMessage.java │ │ │ │ │ │ └── sms │ │ │ │ │ │ │ ├── SmsChannelRefreshMessage.java │ │ │ │ │ │ │ ├── SmsSendMessage.java │ │ │ │ │ │ │ └── SmsTemplateRefreshMessage.java │ │ │ │ │ └── producer │ │ │ │ │ │ ├── auth │ │ │ │ │ │ └── OAuth2ClientProducer.java │ │ │ │ │ │ ├── dept │ │ │ │ │ │ └── DeptProducer.java │ │ │ │ │ │ ├── mail │ │ │ │ │ │ └── MailProducer.java │ │ │ │ │ │ ├── notify │ │ │ │ │ │ └── NotifyProducer.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ ├── MenuProducer.java │ │ │ │ │ │ ├── PermissionProducer.java │ │ │ │ │ │ └── RoleProducer.java │ │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ └── SensitiveWordProducer.java │ │ │ │ │ │ └── sms │ │ │ │ │ │ └── SmsProducer.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── service │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── AdminAuthService.java │ │ │ │ │ │ └── AdminAuthServiceImpl.java │ │ │ │ │ ├── dept │ │ │ │ │ │ ├── DeptService.java │ │ │ │ │ │ ├── DeptServiceImpl.java │ │ │ │ │ │ ├── PostService.java │ │ │ │ │ │ └── PostServiceImpl.java │ │ │ │ │ ├── dict │ │ │ │ │ │ ├── DictDataService.java │ │ │ │ │ │ ├── DictDataServiceImpl.java │ │ │ │ │ │ ├── DictTypeService.java │ │ │ │ │ │ └── DictTypeServiceImpl.java │ │ │ │ │ ├── errorcode │ │ │ │ │ │ ├── ErrorCodeService.java │ │ │ │ │ │ └── ErrorCodeServiceImpl.java │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── LoginLogService.java │ │ │ │ │ │ ├── LoginLogServiceImpl.java │ │ │ │ │ │ ├── OperateLogService.java │ │ │ │ │ │ └── OperateLogServiceImpl.java │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── MailAccountService.java │ │ │ │ │ │ ├── MailAccountServiceImpl.java │ │ │ │ │ │ ├── MailLogService.java │ │ │ │ │ │ ├── MailLogServiceImpl.java │ │ │ │ │ │ ├── MailSendService.java │ │ │ │ │ │ ├── MailSendServiceImpl.java │ │ │ │ │ │ ├── MailTemplateService.java │ │ │ │ │ │ └── MailTemplateServiceImpl.java │ │ │ │ │ ├── member │ │ │ │ │ │ ├── MemberService.java │ │ │ │ │ │ ├── MemberServiceImpl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── notice │ │ │ │ │ │ ├── NoticeService.java │ │ │ │ │ │ └── NoticeServiceImpl.java │ │ │ │ │ ├── notify │ │ │ │ │ │ ├── NotifyMessageService.java │ │ │ │ │ │ ├── NotifyMessageServiceImpl.java │ │ │ │ │ │ ├── NotifySendService.java │ │ │ │ │ │ ├── NotifySendServiceImpl.java │ │ │ │ │ │ ├── NotifyTemplateService.java │ │ │ │ │ │ └── NotifyTemplateServiceImpl.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── OAuth2ApproveService.java │ │ │ │ │ │ ├── OAuth2ApproveServiceImpl.java │ │ │ │ │ │ ├── OAuth2ClientService.java │ │ │ │ │ │ ├── OAuth2ClientServiceImpl.java │ │ │ │ │ │ ├── OAuth2CodeService.java │ │ │ │ │ │ ├── OAuth2CodeServiceImpl.java │ │ │ │ │ │ ├── OAuth2GrantService.java │ │ │ │ │ │ ├── OAuth2GrantServiceImpl.java │ │ │ │ │ │ ├── OAuth2TokenService.java │ │ │ │ │ │ └── OAuth2TokenServiceImpl.java │ │ │ │ │ ├── permission │ │ │ │ │ │ ├── MenuService.java │ │ │ │ │ │ ├── MenuServiceImpl.java │ │ │ │ │ │ ├── PermissionService.java │ │ │ │ │ │ ├── PermissionServiceImpl.java │ │ │ │ │ │ ├── RoleService.java │ │ │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ │ │ └── bo │ │ │ │ │ │ │ └── RoleCreateReqBO.java │ │ │ │ │ ├── sensitiveword │ │ │ │ │ │ ├── SensitiveWordService.java │ │ │ │ │ │ └── SensitiveWordServiceImpl.java │ │ │ │ │ ├── sms │ │ │ │ │ │ ├── SmsChannelService.java │ │ │ │ │ │ ├── SmsChannelServiceImpl.java │ │ │ │ │ │ ├── SmsCodeService.java │ │ │ │ │ │ ├── SmsCodeServiceImpl.java │ │ │ │ │ │ ├── SmsLogService.java │ │ │ │ │ │ ├── SmsLogServiceImpl.java │ │ │ │ │ │ ├── SmsSendService.java │ │ │ │ │ │ ├── SmsSendServiceImpl.java │ │ │ │ │ │ ├── SmsTemplateService.java │ │ │ │ │ │ └── SmsTemplateServiceImpl.java │ │ │ │ │ ├── social │ │ │ │ │ │ ├── SocialUserService.java │ │ │ │ │ │ └── SocialUserServiceImpl.java │ │ │ │ │ ├── tenant │ │ │ │ │ │ ├── TenantPackageService.java │ │ │ │ │ │ ├── TenantPackageServiceImpl.java │ │ │ │ │ │ ├── TenantService.java │ │ │ │ │ │ ├── TenantServiceImpl.java │ │ │ │ │ │ └── handler │ │ │ │ │ │ │ ├── TenantInfoHandler.java │ │ │ │ │ │ │ └── TenantMenuHandler.java │ │ │ │ │ └── user │ │ │ │ │ │ ├── AdminUserService.java │ │ │ │ │ │ └── AdminUserServiceImpl.java │ │ │ │ │ └── util │ │ │ │ │ ├── collection │ │ │ │ │ └── SimpleTrie.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ └── OAuth2Utils.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── test-integration │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── module │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── job │ │ │ │ │ │ └── SchedulerManagerTest.java │ │ │ │ │ │ ├── mq │ │ │ │ │ │ └── RedisStreamTest.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── sms │ │ │ │ │ │ │ └── SmsServiceIntegrationTest.java │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── BaseDbAndRedisIntegrationTest.java │ │ │ │ │ │ └── BaseRedisIntegrationTest.java │ │ │ │ └── resources │ │ │ │ │ └── application-integration-test.yaml │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── module │ │ │ │ │ └── system │ │ │ │ │ ├── controller │ │ │ │ │ └── admin │ │ │ │ │ │ └── oauth2 │ │ │ │ │ │ └── OAuth2OpenControllerTest.java │ │ │ │ │ └── service │ │ │ │ │ ├── auth │ │ │ │ │ └── AdminAuthServiceImplTest.java │ │ │ │ │ ├── dept │ │ │ │ │ ├── DeptServiceImplTest.java │ │ │ │ │ └── PostServiceImplTest.java │ │ │ │ │ ├── dict │ │ │ │ │ ├── DictDataServiceImplTest.java │ │ │ │ │ └── DictTypeServiceImplTest.java │ │ │ │ │ ├── errorcode │ │ │ │ │ └── ErrorCodeServiceTest.java │ │ │ │ │ ├── logger │ │ │ │ │ ├── LoginLogServiceImplTest.java │ │ │ │ │ └── OperateLogServiceImplTest.java │ │ │ │ │ ├── mail │ │ │ │ │ ├── MailAccountServiceImplTest.java │ │ │ │ │ ├── MailLogServiceImplTest.java │ │ │ │ │ ├── MailSendServiceImplTest.java │ │ │ │ │ └── MailTemplateServiceImplTest.java │ │ │ │ │ ├── notice │ │ │ │ │ └── NoticeServiceImplTest.java │ │ │ │ │ ├── notify │ │ │ │ │ ├── NotifyMessageServiceImplTest.java │ │ │ │ │ ├── NotifySendServiceImplTest.java │ │ │ │ │ └── NotifyTemplateServiceImplTest.java │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── OAuth2ApproveServiceImplTest.java │ │ │ │ │ ├── OAuth2ClientServiceImplTest.java │ │ │ │ │ ├── OAuth2CodeServiceImplTest.java │ │ │ │ │ ├── OAuth2GrantServiceImplTest.java │ │ │ │ │ └── OAuth2TokenServiceImplTest.java │ │ │ │ │ ├── permission │ │ │ │ │ ├── MenuServiceImplTest.java │ │ │ │ │ ├── PermissionServiceTest.java │ │ │ │ │ └── RoleServiceImplTest.java │ │ │ │ │ ├── sensitiveword │ │ │ │ │ └── SensitiveWordServiceImplTest.java │ │ │ │ │ ├── sms │ │ │ │ │ ├── SmsChannelServiceTest.java │ │ │ │ │ ├── SmsCodeServiceImplTest.java │ │ │ │ │ ├── SmsLogServiceImplTest.java │ │ │ │ │ ├── SmsSendServiceImplTest.java │ │ │ │ │ └── SmsTemplateServiceImplTest.java │ │ │ │ │ ├── social │ │ │ │ │ └── SocialUserServiceImplTest.java │ │ │ │ │ ├── tenant │ │ │ │ │ ├── TenantPackageServiceImplTest.java │ │ │ │ │ └── TenantServiceImplTest.java │ │ │ │ │ └── user │ │ │ │ │ └── AdminUserServiceImplTest.java │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ ├── logback.xml │ │ │ │ └── sql │ │ │ │ ├── clean.sql │ │ │ │ └── create_tables.sql │ │ └── pom.xml │ ├── metaxk-server │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── metaxk │ │ │ │ │ └── server │ │ │ │ │ └── MetaxkServerApplication.java │ │ │ └── resources │ │ │ │ ├── application-local.yaml │ │ │ │ ├── application.yaml │ │ │ │ └── logback-spring.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── metaxk │ │ │ └── ProjectReactor.java │ ├── pom.xml │ ├── 新建模块说明.md │ └── 说明.md ├── new_open_mes_front │ ├── .editorconfig │ ├── .env │ ├── .env.base │ ├── .env.dev │ ├── .env.front │ ├── .env.github │ ├── .env.prod │ ├── .env.static │ ├── .env.test │ ├── .eslintignore │ ├── .eslintrc-auto-import.json │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .stylelintignore │ ├── .vscode │ │ └── extensions.json │ ├── build │ │ └── vite │ │ │ ├── index.ts │ │ │ └── optimize.ts │ ├── index.html │ ├── package-原始.json │ ├── package.json │ ├── pnpm-lock-原始.yaml │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── prettier.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── logo.png │ │ └── 电信logo.png │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── a_public_port │ │ │ │ └── index.ts │ │ │ ├── bpm │ │ │ │ ├── activity │ │ │ │ │ └── index.ts │ │ │ │ ├── definition │ │ │ │ │ └── index.ts │ │ │ │ ├── form │ │ │ │ │ └── index.ts │ │ │ │ ├── leave │ │ │ │ │ └── index.ts │ │ │ │ ├── model │ │ │ │ │ └── index.ts │ │ │ │ ├── processInstance │ │ │ │ │ └── index.ts │ │ │ │ ├── task │ │ │ │ │ └── index.ts │ │ │ │ ├── taskAssignRule │ │ │ │ │ └── index.ts │ │ │ │ └── userGroup │ │ │ │ │ └── index.ts │ │ │ ├── equipmentManage │ │ │ │ └── storeStateType.ts │ │ │ ├── facilityManage │ │ │ │ ├── ledger.ts │ │ │ │ └── typeSet.ts │ │ │ ├── home │ │ │ │ └── index.ts │ │ │ ├── infra │ │ │ │ ├── apiAccessLog │ │ │ │ │ └── index.ts │ │ │ │ ├── apiErrorLog │ │ │ │ │ └── index.ts │ │ │ │ ├── codegen │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── config │ │ │ │ │ └── index.ts │ │ │ │ ├── dataSourceConfig │ │ │ │ │ └── index.ts │ │ │ │ ├── dbDoc │ │ │ │ │ └── index.ts │ │ │ │ ├── fileConfig │ │ │ │ │ └── index.ts │ │ │ │ ├── fileList │ │ │ │ │ └── index.ts │ │ │ │ ├── job │ │ │ │ │ └── index.ts │ │ │ │ ├── jobLog │ │ │ │ │ └── index.ts │ │ │ │ └── redis │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── inspect │ │ │ │ └── otherInspect │ │ │ │ │ └── index.ts │ │ │ ├── inspectionStandards │ │ │ │ ├── detectionClassification │ │ │ │ │ └── index.ts │ │ │ │ ├── detectionEquipment │ │ │ │ │ └── index.ts │ │ │ │ ├── detectionSettings │ │ │ │ │ └── index.ts │ │ │ │ ├── incomingInspection │ │ │ │ │ └── index.ts │ │ │ │ ├── inspectionMethod │ │ │ │ │ └── index.ts │ │ │ │ ├── otherInspection │ │ │ │ │ └── index.ts │ │ │ │ └── processInspection │ │ │ │ │ └── index.ts │ │ │ ├── issuesManagement │ │ │ │ ├── problemKind │ │ │ │ │ └── index.ts │ │ │ │ ├── problemManagement │ │ │ │ │ └── index.ts │ │ │ │ ├── problemMethod │ │ │ │ │ └── index.ts │ │ │ │ ├── problemModel │ │ │ │ │ └── index.ts │ │ │ │ ├── problemParts │ │ │ │ │ └── index.ts │ │ │ │ └── problemSources │ │ │ │ │ └── index.ts │ │ │ ├── login │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── masterData │ │ │ │ ├── clientManage │ │ │ │ │ └── index.ts │ │ │ │ ├── colorNum │ │ │ │ │ └── index.ts │ │ │ │ ├── craftCourse │ │ │ │ │ └── index.ts │ │ │ │ ├── diskNum │ │ │ │ │ └── index.ts │ │ │ │ ├── materialClassify │ │ │ │ │ └── index.ts │ │ │ │ ├── materialManage │ │ │ │ │ └── index.ts │ │ │ │ ├── measureUnit │ │ │ │ │ └── index.ts │ │ │ │ ├── model │ │ │ │ │ └── index.ts │ │ │ │ ├── processSet │ │ │ │ │ └── index.ts │ │ │ │ ├── specifications │ │ │ │ │ └── index.ts │ │ │ │ ├── supplierManage │ │ │ │ │ └── index.ts │ │ │ │ ├── unitConversion │ │ │ │ │ └── index.ts │ │ │ │ ├── workShopSetUp │ │ │ │ │ └── index.ts │ │ │ │ └── workstation │ │ │ │ │ └── index.ts │ │ │ ├── mp │ │ │ │ ├── account │ │ │ │ │ └── index.ts │ │ │ │ ├── autoReply │ │ │ │ │ └── index.ts │ │ │ │ ├── draft │ │ │ │ │ └── index.ts │ │ │ │ ├── freePublish │ │ │ │ │ └── index.ts │ │ │ │ ├── material │ │ │ │ │ └── index.ts │ │ │ │ ├── menu │ │ │ │ │ └── index.ts │ │ │ │ ├── message │ │ │ │ │ └── index.ts │ │ │ │ ├── mpuser │ │ │ │ │ └── index.ts │ │ │ │ ├── statistics │ │ │ │ │ └── index.ts │ │ │ │ └── tag │ │ │ │ │ └── index.ts │ │ │ ├── noticeManage │ │ │ │ └── Arrivalnotice │ │ │ │ │ └── index.ts │ │ │ ├── pay │ │ │ │ ├── app │ │ │ │ │ └── index.ts │ │ │ │ ├── channel │ │ │ │ │ └── index.ts │ │ │ │ ├── merchant │ │ │ │ │ └── index.ts │ │ │ │ ├── order │ │ │ │ │ └── index.ts │ │ │ │ └── refund │ │ │ │ │ └── index.ts │ │ │ ├── processInspection │ │ │ │ ├── incomingReceipts │ │ │ │ │ └── index.ts │ │ │ │ └── inspectionReceipts │ │ │ │ │ └── index.ts │ │ │ ├── prodMgmt │ │ │ │ ├── lastWorkHours.ts │ │ │ │ ├── pmOrder.ts │ │ │ │ ├── production.ts │ │ │ │ ├── reportWork.ts │ │ │ │ ├── reportWorkTwo.ts │ │ │ │ ├── synchronize.ts │ │ │ │ ├── task.ts │ │ │ │ ├── workHours.ts │ │ │ │ └── workHoursType.ts │ │ │ ├── purchaseOrder │ │ │ │ └── index.ts │ │ │ ├── purchaseReturn │ │ │ │ └── index.ts │ │ │ ├── returnGoods │ │ │ │ └── clientGoods │ │ │ │ │ └── index.ts │ │ │ ├── salesOrder │ │ │ │ ├── articlePrice │ │ │ │ │ └── index.ts │ │ │ │ ├── quotationList │ │ │ │ │ └── index.ts │ │ │ │ ├── quotationModel │ │ │ │ │ └── index.ts │ │ │ │ └── saleSheet │ │ │ │ │ └── index.ts │ │ │ ├── scheduling │ │ │ │ ├── classType.ts │ │ │ │ ├── schedulingCalendar.ts │ │ │ │ ├── schedulingPlan.ts │ │ │ │ └── shiftSet.ts │ │ │ ├── stock │ │ │ │ ├── produceReceive │ │ │ │ │ └── index.ts │ │ │ │ ├── produceStock │ │ │ │ │ └── index.ts │ │ │ │ ├── purchaseStock │ │ │ │ │ └── index.ts │ │ │ │ ├── purchaseWarehouse │ │ │ │ │ └── index.ts │ │ │ │ ├── saleStock │ │ │ │ │ └── index.ts │ │ │ │ ├── salesOrderCount │ │ │ │ │ └── index.ts │ │ │ │ └── semiFinishedStock │ │ │ │ │ └── index.ts │ │ │ ├── stockCount │ │ │ │ └── stockCountAll │ │ │ │ │ └── index.ts │ │ │ ├── storeHouse │ │ │ │ ├── wareHouseArea │ │ │ │ │ └── index.ts │ │ │ │ ├── wareHousePlace │ │ │ │ │ └── index.ts │ │ │ │ └── warehouseModel │ │ │ │ │ └── index.ts │ │ │ └── system │ │ │ │ ├── dept │ │ │ │ └── index.ts │ │ │ │ ├── dict │ │ │ │ ├── dict.data.ts │ │ │ │ ├── dict.type.ts │ │ │ │ └── types.ts │ │ │ │ ├── errorCode │ │ │ │ └── index.ts │ │ │ │ ├── loginLog │ │ │ │ └── index.ts │ │ │ │ ├── mail │ │ │ │ ├── account │ │ │ │ │ └── index.ts │ │ │ │ ├── log │ │ │ │ │ └── index.ts │ │ │ │ └── template │ │ │ │ │ └── index.ts │ │ │ │ ├── menu │ │ │ │ └── index.ts │ │ │ │ ├── notice │ │ │ │ └── index.ts │ │ │ │ ├── notify │ │ │ │ ├── message │ │ │ │ │ └── index.ts │ │ │ │ └── template │ │ │ │ │ └── index.ts │ │ │ │ ├── oauth2 │ │ │ │ ├── client.ts │ │ │ │ └── token.ts │ │ │ │ ├── operatelog │ │ │ │ └── index.ts │ │ │ │ ├── permission │ │ │ │ └── index.ts │ │ │ │ ├── post │ │ │ │ └── index.ts │ │ │ │ ├── role │ │ │ │ └── index.ts │ │ │ │ ├── sensitiveWord │ │ │ │ └── index.ts │ │ │ │ ├── sms │ │ │ │ ├── smsChannel │ │ │ │ │ └── index.ts │ │ │ │ ├── smsLog │ │ │ │ │ └── index.ts │ │ │ │ └── smsTemplate │ │ │ │ │ └── index.ts │ │ │ │ ├── tenant │ │ │ │ └── index.ts │ │ │ │ ├── tenantPackage │ │ │ │ └── index.ts │ │ │ │ └── user │ │ │ │ ├── index.ts │ │ │ │ ├── profile.ts │ │ │ │ └── socialUser.ts │ │ ├── assets │ │ │ ├── imgs │ │ │ │ ├── avatar.gif │ │ │ │ ├── avatar.jpg │ │ │ │ ├── logo-bg.png │ │ │ │ ├── logo.png │ │ │ │ └── 电信logo.png │ │ │ └── svgs │ │ │ │ ├── 403.svg │ │ │ │ ├── 404.svg │ │ │ │ ├── 500.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── login-bg.svg │ │ │ │ ├── login-box-bg.svg │ │ │ │ ├── message.svg │ │ │ │ ├── money.svg │ │ │ │ ├── peoples.svg │ │ │ │ └── shopping.svg │ │ ├── autocannon.js │ │ ├── components │ │ │ ├── Backtop │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Backtop.vue │ │ │ ├── CommonSearch │ │ │ │ └── index.vue │ │ │ ├── CommonTable │ │ │ │ └── index.vue │ │ │ ├── CommonTreeProduct │ │ │ │ └── index.vue │ │ │ ├── ConfigGlobal │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── ConfigGlobal.vue │ │ │ ├── ContentDetailWrap │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── ContentDetailWrap.vue │ │ │ ├── ContentWrap │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── ContentWrap.vue │ │ │ ├── CountTo │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── CountTo.vue │ │ │ ├── Crontab │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Crontab.vue │ │ │ ├── Cropper │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── CopperModal.vue │ │ │ │ │ ├── Cropper.vue │ │ │ │ │ ├── CropperAvatar.vue │ │ │ │ │ └── types.ts │ │ │ ├── Descriptions │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Descriptions.vue │ │ │ ├── Dialog │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Dialog.vue │ │ │ ├── DictTag │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── DictTag.vue │ │ │ ├── Echart │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Echart.vue │ │ │ ├── Editor │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Editor.vue │ │ │ ├── Error │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Error.vue │ │ │ ├── Form │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Form.vue │ │ │ │ │ ├── componentMap.ts │ │ │ │ │ ├── components │ │ │ │ │ ├── useRenderCheckbox.tsx │ │ │ │ │ ├── useRenderRadio.tsx │ │ │ │ │ └── useRenderSelect.tsx │ │ │ │ │ ├── helper.ts │ │ │ │ │ └── types.ts │ │ │ ├── Formwork-page │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── Highlight │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Highlight.vue │ │ │ ├── IFrame │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── IFrame.vue │ │ │ ├── Icon │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Icon.vue │ │ │ │ │ ├── IconSelect.vue │ │ │ │ │ └── data.ts │ │ │ ├── ImageViewer │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── ImageViewer.vue │ │ │ │ │ └── types.ts │ │ │ ├── Infotip │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Infotip.vue │ │ │ ├── InputPassword │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── InputPassword.vue │ │ │ ├── Pagination │ │ │ │ └── index.vue │ │ │ ├── Qrcode │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Qrcode.vue │ │ │ ├── Search │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Search.vue │ │ │ ├── Sticky │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Sticky.vue │ │ │ ├── Table │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Table.vue │ │ │ │ │ ├── helper.ts │ │ │ │ │ └── types.ts │ │ │ ├── TableForm │ │ │ │ ├── BasicForm.vue │ │ │ │ └── index.js │ │ │ ├── Tooltip │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Tooltip.vue │ │ │ ├── UploadFile │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── UploadFile.vue │ │ │ │ │ ├── UploadImg.vue │ │ │ │ │ └── UploadImgs.vue │ │ │ ├── Verifition │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Verify.vue │ │ │ │ │ ├── Verify │ │ │ │ │ ├── VerifyPoints.vue │ │ │ │ │ ├── VerifySlide.vue │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── ase.ts │ │ │ │ │ └── util.ts │ │ │ ├── XButton │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── XButton.vue │ │ │ │ │ └── XTextButton.vue │ │ │ ├── XModal │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── XModal.vue │ │ │ ├── XTable │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── XTable.vue │ │ │ │ │ ├── style │ │ │ │ │ ├── dark.scss │ │ │ │ │ ├── index.scss │ │ │ │ │ └── light.scss │ │ │ │ │ └── type.ts │ │ │ ├── bpmnProcessDesigner │ │ │ │ ├── package │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── ProcessDesigner.vue │ │ │ │ │ │ ├── ProcessViewer.vue │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── index2.ts │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── content-pad │ │ │ │ │ │ │ ├── contentPadProvider.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── defaultEmpty.js │ │ │ │ │ │ │ ├── descriptor │ │ │ │ │ │ │ ├── activitiDescriptor.json │ │ │ │ │ │ │ ├── camundaDescriptor.json │ │ │ │ │ │ │ └── flowableDescriptor.json │ │ │ │ │ │ │ ├── extension-moddle │ │ │ │ │ │ │ ├── activiti │ │ │ │ │ │ │ │ ├── activitiExtension.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── camunda │ │ │ │ │ │ │ │ ├── extension.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── flowable │ │ │ │ │ │ │ │ ├── flowableExtension.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── palette │ │ │ │ │ │ │ ├── CustomPalette.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── paletteProvider.js │ │ │ │ │ │ │ └── translate │ │ │ │ │ │ │ ├── customTranslate.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── palette │ │ │ │ │ │ └── ProcessPalette.vue │ │ │ │ │ ├── penal │ │ │ │ │ │ ├── PropertiesPanel.vue │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ └── ElementBaseInfo.vue │ │ │ │ │ │ ├── flow-condition │ │ │ │ │ │ │ └── FlowCondition.vue │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ └── ElementForm.vue │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── listeners │ │ │ │ │ │ │ ├── ElementListeners.vue │ │ │ │ │ │ │ ├── UserTaskListeners.vue │ │ │ │ │ │ │ ├── template.js │ │ │ │ │ │ │ └── utilSelf.ts │ │ │ │ │ │ ├── multi-instance │ │ │ │ │ │ │ └── ElementMultiInstance.vue │ │ │ │ │ │ ├── other │ │ │ │ │ │ │ └── ElementOtherConfig.vue │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ └── ElementProperties.vue │ │ │ │ │ │ ├── signal-message │ │ │ │ │ │ │ └── SignalAndMessage.vue │ │ │ │ │ │ └── task │ │ │ │ │ │ │ ├── ElementTask.vue │ │ │ │ │ │ │ └── task-components │ │ │ │ │ │ │ ├── ReceiveTask.vue │ │ │ │ │ │ │ ├── ScriptTask.vue │ │ │ │ │ │ │ └── UserTask.vue │ │ │ │ │ ├── theme │ │ │ │ │ │ ├── element-variables.scss │ │ │ │ │ │ ├── index.scss │ │ │ │ │ │ ├── process-designer.scss │ │ │ │ │ │ └── process-panel.scss │ │ │ │ │ └── utils.ts │ │ │ │ └── src │ │ │ │ │ ├── highlight │ │ │ │ │ └── index.js │ │ │ │ │ ├── modules │ │ │ │ │ ├── custom-renderer │ │ │ │ │ │ ├── CustomRenderer.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── rules │ │ │ │ │ │ ├── CustomRules.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── translations.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── directive │ │ │ │ │ └── clickOutSide.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── xml2json.js │ │ │ ├── facilityTreeChoose │ │ │ │ ├── data.ts │ │ │ │ ├── index.vue │ │ │ │ ├── materialData.vue │ │ │ │ └── treeMaterial.vue │ │ │ └── index.ts │ │ ├── config │ │ │ └── axios │ │ │ │ ├── config.ts │ │ │ │ ├── errorCode.ts │ │ │ │ ├── index.ts │ │ │ │ └── service.ts │ │ ├── directives │ │ │ ├── index.ts │ │ │ └── permission │ │ │ │ ├── hasPermi.ts │ │ │ │ └── hasRole.ts │ │ ├── hooks │ │ │ ├── event │ │ │ │ └── useScrollTo.ts │ │ │ └── web │ │ │ │ ├── useCache.ts │ │ │ │ ├── useConfigGlobal.ts │ │ │ │ ├── useCrudSchemas.ts │ │ │ │ ├── useDesign.ts │ │ │ │ ├── useEmitt.ts │ │ │ │ ├── useForm.ts │ │ │ │ ├── useI18n.ts │ │ │ │ ├── useIcon.ts │ │ │ │ ├── useIntro.ts │ │ │ │ ├── useLocale.ts │ │ │ │ ├── useMessage.ts │ │ │ │ ├── useNProgress.ts │ │ │ │ ├── usePageLoading.ts │ │ │ │ ├── useTable.ts │ │ │ │ ├── useTimeAgo.ts │ │ │ │ ├── useTitle.ts │ │ │ │ ├── useValidator.ts │ │ │ │ ├── useVxeCrudSchemas.ts │ │ │ │ ├── useVxeGrid.ts │ │ │ │ ├── useWatermark.ts │ │ │ │ └── useXTable.ts │ │ ├── layout │ │ │ ├── Layout.vue │ │ │ └── components │ │ │ │ ├── AppView.vue │ │ │ │ ├── Breadcrumb │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Breadcrumb.vue │ │ │ │ │ └── helper.ts │ │ │ │ ├── Collapse │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Collapse.vue │ │ │ │ ├── ContextMenu │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── ContextMenu.vue │ │ │ │ ├── Footer │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Footer.vue │ │ │ │ ├── LocaleDropdown │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── LocaleDropdown.vue │ │ │ │ ├── Logo │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Logo.vue │ │ │ │ ├── Menu │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Menu.vue │ │ │ │ │ ├── components │ │ │ │ │ ├── useRenderMenuItem.tsx │ │ │ │ │ └── useRenderMenuTitle.tsx │ │ │ │ │ └── helper.ts │ │ │ │ ├── Message │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Message.vue │ │ │ │ ├── Screenfull │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── Screenfull.vue │ │ │ │ ├── Setting │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── Setting.vue │ │ │ │ │ └── components │ │ │ │ │ ├── ColorRadioPicker.vue │ │ │ │ │ ├── InterfaceDisplay.vue │ │ │ │ │ └── LayoutRadioPicker.vue │ │ │ │ ├── SizeDropdown │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── SizeDropdown.vue │ │ │ │ ├── TabMenu │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── TabMenu.vue │ │ │ │ │ └── helper.ts │ │ │ │ ├── TagsView │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ ├── TagsView.vue │ │ │ │ │ └── helper.ts │ │ │ │ ├── ThemeSwitch │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── ThemeSwitch.vue │ │ │ │ ├── ToolHeader.vue │ │ │ │ ├── UserInfo │ │ │ │ ├── index.ts │ │ │ │ └── src │ │ │ │ │ └── UserInfo.vue │ │ │ │ └── useRenderLayout.tsx │ │ ├── locales │ │ │ ├── en.ts │ │ │ └── zh-CN.ts │ │ ├── main.ts │ │ ├── permission.ts │ │ ├── plugins │ │ │ ├── animate.css │ │ │ │ └── index.ts │ │ │ ├── echarts │ │ │ │ └── index.ts │ │ │ ├── elementPlus │ │ │ │ └── index.ts │ │ │ ├── formCreate │ │ │ │ └── index.ts │ │ │ ├── svgIcon │ │ │ │ └── index.ts │ │ │ ├── vueI18n │ │ │ │ ├── helper.ts │ │ │ │ └── index.ts │ │ │ ├── vxeTable │ │ │ │ ├── index.ts │ │ │ │ └── renderer │ │ │ │ │ ├── dataPicker.tsx │ │ │ │ │ ├── dataTimeRangePicker.tsx │ │ │ │ │ ├── dict.tsx │ │ │ │ │ ├── html.tsx │ │ │ │ │ ├── img.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── link.tsx │ │ │ │ │ └── preview.tsx │ │ │ └── windi.css │ │ │ │ └── index.ts │ │ ├── router │ │ │ ├── index.ts │ │ │ └── modules │ │ │ │ └── remaining.ts │ │ ├── store │ │ │ ├── index.ts │ │ │ └── modules │ │ │ │ ├── app.ts │ │ │ │ ├── dict.ts │ │ │ │ ├── locale.ts │ │ │ │ ├── orderData.ts │ │ │ │ ├── permission.ts │ │ │ │ ├── tagsView.ts │ │ │ │ └── user.ts │ │ ├── styles │ │ │ ├── common.scss │ │ │ ├── gantt_material.css │ │ │ ├── global.module.scss │ │ │ ├── index.scss │ │ │ ├── var.css │ │ │ ├── variables.scss │ │ │ └── vxe.css │ │ ├── types │ │ │ ├── auto-components.d.ts │ │ │ ├── auto-imports.d.ts │ │ │ ├── components.d.ts │ │ │ ├── configGlobal.d.ts │ │ │ ├── contextMenu.d.ts │ │ │ ├── descriptions.d.ts │ │ │ ├── elementPlus.d.ts │ │ │ ├── form.d.ts │ │ │ ├── icon.d.ts │ │ │ ├── infoTip.d.ts │ │ │ ├── layout.d.ts │ │ │ ├── localeDropdown.d.ts │ │ │ ├── qrcode.d.ts │ │ │ ├── table.d.ts │ │ │ └── theme.d.ts │ │ ├── utils │ │ │ ├── Logger.ts │ │ │ ├── auth.ts │ │ │ ├── color.ts │ │ │ ├── const.ts │ │ │ ├── constants.ts │ │ │ ├── dict.ts │ │ │ ├── domUtils.ts │ │ │ ├── download.ts │ │ │ ├── env.ts │ │ │ ├── filt.ts │ │ │ ├── formCreate.ts │ │ │ ├── formRules.ts │ │ │ ├── formatTime.ts │ │ │ ├── index.ts │ │ │ ├── is.ts │ │ │ ├── jsencrypt.ts │ │ │ ├── permission.ts │ │ │ ├── propTypes.ts │ │ │ ├── routerHelper.ts │ │ │ ├── tree.ts │ │ │ └── tsxHelper.ts │ │ └── views │ │ │ ├── achievementManage │ │ │ └── workHoursFill │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── bpm │ │ │ ├── definition │ │ │ │ ├── definition.data.ts │ │ │ │ └── index.vue │ │ │ ├── form │ │ │ │ ├── form.data.ts │ │ │ │ ├── formEditor.vue │ │ │ │ └── index.vue │ │ │ ├── group │ │ │ │ ├── group.data.ts │ │ │ │ └── index.vue │ │ │ ├── model │ │ │ │ ├── index.vue │ │ │ │ ├── model.data.ts │ │ │ │ └── modelEditor.vue │ │ │ ├── oa │ │ │ │ └── leave │ │ │ │ │ ├── create.vue │ │ │ │ │ ├── detail.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── leave.data.ts │ │ │ ├── processInstance │ │ │ │ ├── create.vue │ │ │ │ ├── detail.vue │ │ │ │ ├── index.vue │ │ │ │ ├── process.create.ts │ │ │ │ └── process.data.ts │ │ │ ├── task │ │ │ │ ├── done │ │ │ │ │ ├── done.data.ts │ │ │ │ │ └── index.vue │ │ │ │ └── todo │ │ │ │ │ ├── index.vue │ │ │ │ │ └── todo.data.ts │ │ │ └── taskAssignRule │ │ │ │ ├── index.vue │ │ │ │ └── taskAssignRule.data.ts │ │ │ ├── equipmentManage │ │ │ ├── stateDataV │ │ │ │ └── index.vue │ │ │ └── storeStateType │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── error │ │ │ ├── 403.vue │ │ │ ├── 404.vue │ │ │ └── 500.vue │ │ │ ├── facilityManage │ │ │ ├── ledger │ │ │ │ ├── components │ │ │ │ │ ├── materialData.vue │ │ │ │ │ ├── productForm.vue │ │ │ │ │ └── treeMaterial.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── typeSet │ │ │ │ ├── components │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── home │ │ │ ├── Index.vue │ │ │ ├── Index2.vue │ │ │ ├── echarts-data.ts │ │ │ └── types.ts │ │ │ ├── infra │ │ │ ├── apiAccessLog │ │ │ │ ├── apiAccessLog.data.ts │ │ │ │ └── index.vue │ │ │ ├── apiErrorLog │ │ │ │ ├── apiErrorLog.data.ts │ │ │ │ └── index.vue │ │ │ ├── build │ │ │ │ └── index.vue │ │ │ ├── codegen │ │ │ │ ├── EditTable.vue │ │ │ │ ├── codegen.data.ts │ │ │ │ ├── components │ │ │ │ │ ├── BasicInfoForm.vue │ │ │ │ │ ├── CloumInfoForm.vue │ │ │ │ │ ├── ImportTable.vue │ │ │ │ │ ├── Preview.vue │ │ │ │ │ └── index.ts │ │ │ │ └── index.vue │ │ │ ├── config │ │ │ │ ├── form.vue │ │ │ │ └── index.vue │ │ │ ├── dataSourceConfig │ │ │ │ ├── dataSourceConfig.data.ts │ │ │ │ └── index.vue │ │ │ ├── dbDoc │ │ │ │ └── index.vue │ │ │ ├── druid │ │ │ │ └── index.vue │ │ │ ├── fileConfig │ │ │ │ ├── fileConfig.data.ts │ │ │ │ └── index.vue │ │ │ ├── fileList │ │ │ │ ├── fileList.data.ts │ │ │ │ └── index.vue │ │ │ ├── job │ │ │ │ ├── JobLog.vue │ │ │ │ ├── index.vue │ │ │ │ ├── job.data.ts │ │ │ │ └── jobLog.data.ts │ │ │ ├── redis │ │ │ │ └── index.vue │ │ │ ├── server │ │ │ │ └── index.vue │ │ │ ├── skywalking │ │ │ │ └── index.vue │ │ │ ├── swagger │ │ │ │ └── index.vue │ │ │ ├── testDemo │ │ │ │ └── index.vue │ │ │ └── webSocket │ │ │ │ └── index.vue │ │ │ ├── inspect │ │ │ ├── incomingInspection │ │ │ │ └── materialsReceipts │ │ │ │ │ ├── components │ │ │ │ │ ├── inspection-standard-model.vue │ │ │ │ │ └── test-results-model.vue │ │ │ │ │ ├── data.ts │ │ │ │ │ └── index.vue │ │ │ ├── otherInspection │ │ │ │ ├── components │ │ │ │ │ ├── inspection-standard-model.vue │ │ │ │ │ ├── process-info-table.vue │ │ │ │ │ ├── test-results-model.vue │ │ │ │ │ └── testing-items-table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── processInspection │ │ │ │ └── inspectionReceipts │ │ │ │ ├── components │ │ │ │ ├── inspection-standard-model.vue │ │ │ │ └── test-results-model.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── inspectionStandards │ │ │ ├── copy-otherInspectionStandard │ │ │ │ ├── components │ │ │ │ │ └── testing-items-table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── detectionClassification │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── detectionEquipment │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── detectionSettings │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── incomingMateria │ │ │ │ ├── components │ │ │ │ │ ├── process-info-table.vue │ │ │ │ │ └── testing-items-table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── inspectionMethod │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── otherInspection │ │ │ │ ├── components │ │ │ │ │ └── testing-items-table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── processInspection │ │ │ │ ├── components │ │ │ │ ├── process-info-table.vue │ │ │ │ └── testing-items-table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── ipadProduce │ │ │ └── index.vue │ │ │ ├── issuesManagement │ │ │ ├── problemKind │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── problemMethod │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── problemModel │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── problemParts │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── problemSources │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── prpoblemManagement │ │ │ │ ├── components │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── login │ │ │ ├── Login.vue │ │ │ └── components │ │ │ │ ├── LoginForm.vue │ │ │ │ ├── LoginFormTitle.vue │ │ │ │ ├── MobileForm.vue │ │ │ │ ├── QrCodeForm.vue │ │ │ │ ├── RegisterForm.vue │ │ │ │ ├── index.ts │ │ │ │ └── useLogin.ts │ │ │ ├── masterData │ │ │ ├── clientManage │ │ │ │ ├── components │ │ │ │ │ ├── dialogForm.vue │ │ │ │ │ ├── searchModel.vue │ │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── colorNum │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── demoView │ │ │ │ └── index.vue │ │ │ ├── diskNum │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── materialClassify │ │ │ │ ├── components │ │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── materialManage │ │ │ │ ├── components │ │ │ │ │ ├── ItemBom.vue │ │ │ │ │ ├── materialData.vue │ │ │ │ │ ├── productForm.vue │ │ │ │ │ ├── sopEmpty.vue │ │ │ │ │ └── treeMaterial.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── measureUnit │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── model │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── specifications │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── supplierManage │ │ │ │ ├── components │ │ │ │ │ ├── dialogForm.vue │ │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── unitConversion │ │ │ │ ├── components │ │ │ │ │ ├── searchModel.vue │ │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── workShopSetUp │ │ │ │ ├── components │ │ │ │ │ └── tableModel.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── workStationManage │ │ │ │ ├── components │ │ │ │ ├── carouselCard.vue │ │ │ │ └── workStationResources.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── mp │ │ │ ├── account │ │ │ │ └── index.vue │ │ │ ├── autoReply │ │ │ │ └── index.vue │ │ │ ├── draft │ │ │ │ └── index.vue │ │ │ ├── freePublish │ │ │ │ └── index.vue │ │ │ ├── material │ │ │ │ └── index.vue │ │ │ ├── menu │ │ │ │ └── index.vue │ │ │ ├── message │ │ │ │ └── index.vue │ │ │ ├── mpuser │ │ │ │ └── index.vue │ │ │ └── statistics │ │ │ │ └── index.vue │ │ │ ├── noticeManage │ │ │ └── Arrivalnotice │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── pay │ │ │ ├── app │ │ │ │ ├── app.data.ts │ │ │ │ └── index.vue │ │ │ ├── merchant │ │ │ │ ├── index.vue │ │ │ │ └── merchant.data.ts │ │ │ ├── order │ │ │ │ ├── index.vue │ │ │ │ └── order.data.ts │ │ │ └── refund │ │ │ │ ├── index.vue │ │ │ │ └── refund.data.ts │ │ │ ├── prodMgmt │ │ │ ├── craftCourse │ │ │ │ ├── components │ │ │ │ │ ├── processCompose │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── productRelevance │ │ │ │ │ │ └── index.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── lastWorkHours │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── pmOrder │ │ │ │ ├── components │ │ │ │ │ ├── bomModel │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── clientModel │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── materialMiniModel │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── materialData.vue │ │ │ │ │ │ └── treeMaterial.vue │ │ │ │ │ ├── materialModel │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── orderDialog.vue │ │ │ │ │ └── printContent.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── processSet │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── productionScheduling │ │ │ │ ├── components │ │ │ │ │ ├── gantt-view.vue │ │ │ │ │ ├── proTask.vue │ │ │ │ │ └── workStationSelect.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── reportWork │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── reportWorkTwo │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── synchronize │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── task │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── workHours │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── workHoursType │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── profile │ │ │ ├── Index.vue │ │ │ └── components │ │ │ │ ├── BasicInfo.vue │ │ │ │ ├── ProfileUser.vue │ │ │ │ ├── ResetPwd.vue │ │ │ │ ├── UserAvatar.vue │ │ │ │ ├── UserSocial.vue │ │ │ │ └── index.ts │ │ │ ├── purchaseOrder │ │ │ ├── components │ │ │ │ └── returnGoodsTable.vue │ │ │ ├── data.ts │ │ │ └── index.vue │ │ │ ├── purchaseReturn │ │ │ ├── data.ts │ │ │ └── index.vue │ │ │ ├── redirect │ │ │ └── Redirect.vue │ │ │ ├── report │ │ │ ├── goview │ │ │ │ └── index.vue │ │ │ └── jmreport │ │ │ │ └── index.vue │ │ │ ├── returnGoods │ │ │ ├── clientGoods │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── components │ │ │ │ └── returnGoodsTable.vue │ │ │ ├── salesOrder │ │ │ ├── articlePrice │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── quotationList │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── quotationModel │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── saleSheet │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── salesOrderCount │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── scheduling │ │ │ ├── classType │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── schedulingCalendar │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── schedulingPlan │ │ │ │ ├── components │ │ │ │ │ └── scheduling_plan_table.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── shiftSet │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── stock │ │ │ ├── produceReceive │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── produceStock │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── purchaseStock │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── purchaseWarehouse │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── saleStock │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── saleStockCopy │ │ │ │ ├── components │ │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── semiFinishedStock │ │ │ │ ├── components │ │ │ │ └── returnGoodsTable.vue │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── stockCount │ │ │ └── stockCountAll │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── storeHouse │ │ │ ├── wareHouseArea │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── wareHousePlace │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ └── warehouseModel │ │ │ │ ├── data.ts │ │ │ │ └── index.vue │ │ │ ├── system │ │ │ ├── dept │ │ │ │ ├── dept.data.ts │ │ │ │ └── index.vue │ │ │ ├── dict │ │ │ │ ├── dict.data.ts │ │ │ │ ├── dict.type.ts │ │ │ │ └── index.vue │ │ │ ├── errorCode │ │ │ │ ├── errorCode.data.ts │ │ │ │ └── index.vue │ │ │ ├── loginlog │ │ │ │ ├── index.vue │ │ │ │ └── loginLog.data.ts │ │ │ ├── mail │ │ │ │ ├── account │ │ │ │ │ ├── account.data.ts │ │ │ │ │ └── index.vue │ │ │ │ ├── log │ │ │ │ │ ├── index.vue │ │ │ │ │ └── log.data.ts │ │ │ │ └── template │ │ │ │ │ ├── index.vue │ │ │ │ │ └── template.data.ts │ │ │ ├── menu │ │ │ │ ├── index.vue │ │ │ │ └── menu.data.ts │ │ │ ├── notice │ │ │ │ ├── form.vue │ │ │ │ └── index.vue │ │ │ ├── notify │ │ │ │ ├── message │ │ │ │ │ ├── index.vue │ │ │ │ │ └── message.data.ts │ │ │ │ ├── my │ │ │ │ │ ├── index.vue │ │ │ │ │ └── my.data.ts │ │ │ │ └── template │ │ │ │ │ ├── index.vue │ │ │ │ │ └── template.data.ts │ │ │ ├── oauth2 │ │ │ │ ├── client │ │ │ │ │ ├── client.data.ts │ │ │ │ │ └── index.vue │ │ │ │ └── token │ │ │ │ │ ├── index.vue │ │ │ │ │ └── token.data.ts │ │ │ ├── operatelog │ │ │ │ ├── index.vue │ │ │ │ └── operatelog.data.ts │ │ │ ├── post │ │ │ │ ├── form.vue │ │ │ │ ├── index.vue │ │ │ │ └── post.data.ts │ │ │ ├── role │ │ │ │ ├── index.vue │ │ │ │ └── role.data.ts │ │ │ ├── sensitiveWord │ │ │ │ ├── index.vue │ │ │ │ └── sensitiveWord.data.ts │ │ │ ├── sms │ │ │ │ ├── smsChannel │ │ │ │ │ ├── index.vue │ │ │ │ │ └── sms.channel.data.ts │ │ │ │ ├── smsLog │ │ │ │ │ ├── index.vue │ │ │ │ │ └── sms.log.data.ts │ │ │ │ └── smsTemplate │ │ │ │ │ ├── index.vue │ │ │ │ │ └── sms.template.data.ts │ │ │ ├── tenant │ │ │ │ ├── index.vue │ │ │ │ └── tenant.data.ts │ │ │ ├── tenantPackage │ │ │ │ ├── index.vue │ │ │ │ └── tenantPackage.data.ts │ │ │ └── user │ │ │ │ ├── index.vue │ │ │ │ └── user.data.ts │ │ │ ├── workerReport │ │ │ └── index.vue │ │ │ └── workhoursDetail │ │ │ └── reportWorkDetail │ │ │ ├── components │ │ │ └── statisticalCharts.vue │ │ │ ├── data.ts │ │ │ └── index.vue │ ├── stylelint.config.js │ ├── tsconfig.json │ ├── types │ │ ├── components.d.ts │ │ ├── custom-types.d.ts │ │ ├── env.d.ts │ │ ├── global.d.ts │ │ └── router.d.ts │ ├── vite.config.ts │ ├── windi.config.ts │ └── 代码运行说明.md ├── new_open_mes_server │ ├── README.md │ ├── http-client.env.json │ ├── lombok.config │ ├── metaxk-module-mes │ │ ├── metaxk-module-mes-api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── module │ │ │ │ └── mes │ │ │ │ ├── api │ │ │ │ ├── package-info.java │ │ │ │ ├── property │ │ │ │ │ ├── ProductPropertyValueApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ └── ProductPropertyValueDetailRespDTO.java │ │ │ │ ├── sku │ │ │ │ │ ├── ProductSkuApi.java │ │ │ │ │ └── dto │ │ │ │ │ │ ├── ProductSkuRespDTO.java │ │ │ │ │ │ └── ProductSkuUpdateStockReqDTO.java │ │ │ │ └── spu │ │ │ │ │ ├── ProductSpuApi.java │ │ │ │ │ └── dto │ │ │ │ │ └── ProductSpuRespDTO.java │ │ │ │ └── enums │ │ │ │ ├── ErrorCodeConstants.java │ │ │ │ ├── comment │ │ │ │ └── ProductCommentAuditStatusEnum.java │ │ │ │ ├── delivery │ │ │ │ └── DeliveryTypeEnum.java │ │ │ │ ├── group │ │ │ │ └── ProductGroupStyleEnum.java │ │ │ │ └── spu │ │ │ │ ├── ProductSpuSpecTypeEnum.java │ │ │ │ └── ProductSpuStatusEnum.java │ │ ├── metaxk-module-mes-biz │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── metaxk │ │ │ │ │ │ └── module │ │ │ │ │ │ └── mes │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── BaseException.java │ │ │ │ │ │ ├── BusinessType.java │ │ │ │ │ │ ├── CommonController.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── EntityCommon.java │ │ │ │ │ │ ├── ExcelDictDTOListener.java │ │ │ │ │ │ ├── FileException.java │ │ │ │ │ │ ├── FileNameLengthLimitExceededException.java │ │ │ │ │ │ ├── FileSizeLimitExceededException.java │ │ │ │ │ │ ├── InvalidExtensionException.java │ │ │ │ │ │ ├── Log.java │ │ │ │ │ │ ├── OperatorType.java │ │ │ │ │ │ ├── PageDomain.java │ │ │ │ │ │ ├── Seq.java │ │ │ │ │ │ ├── TreeSelect.java │ │ │ │ │ │ └── UserConstants.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MesConfig.java │ │ │ │ │ │ └── ServerConfig.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ ├── AutoCodeController.java │ │ │ │ │ │ │ ├── CycleMethodMnum.java │ │ │ │ │ │ │ ├── PartTypeEnum.java │ │ │ │ │ │ │ ├── PartTypeFixCharHandler.java │ │ │ │ │ │ │ ├── PartTypeHandler.java │ │ │ │ │ │ │ ├── PartTypeInputCharHandler.java │ │ │ │ │ │ │ ├── PartTypeNowDateHandler.java │ │ │ │ │ │ │ ├── PartTypeSerialNoHandler.java │ │ │ │ │ │ │ └── PartTypeTemplate.java │ │ │ │ │ │ │ ├── cla │ │ │ │ │ │ │ ├── ClassCalendarController.java │ │ │ │ │ │ │ ├── ClassMemberController.java │ │ │ │ │ │ │ ├── ClassPlanController.java │ │ │ │ │ │ │ ├── ClassTeamController.java │ │ │ │ │ │ │ ├── ClassTeamTypeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── ClaMemberQueryVo.java │ │ │ │ │ │ │ │ ├── ClaPlanExcelVo.java │ │ │ │ │ │ │ │ ├── ClaPlanMemberQueryVo.java │ │ │ │ │ │ │ │ ├── ClaPlanMemberUpdateVo.java │ │ │ │ │ │ │ │ ├── ClaPlanMemberVo.java │ │ │ │ │ │ │ │ ├── ClaPlanQueryVo.java │ │ │ │ │ │ │ │ ├── ClaPlanSaveVo.java │ │ │ │ │ │ │ │ ├── ClaTeamExcelVo.java │ │ │ │ │ │ │ │ ├── ClaTeamQueryVo.java │ │ │ │ │ │ │ │ ├── ClaTeamTypeExcelVo.java │ │ │ │ │ │ │ │ ├── ClaTeamTypeQueryVo.java │ │ │ │ │ │ │ │ ├── PlanMemberVo.java │ │ │ │ │ │ │ │ ├── PlanTeamQueryVo.java │ │ │ │ │ │ │ │ └── ScheduleMemberVo.java │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── CustomDictDataController.java │ │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ └── SysDeptController.java │ │ │ │ │ │ │ ├── dv │ │ │ │ │ │ │ ├── MachineryController.java │ │ │ │ │ │ │ ├── MachineryStatusController.java │ │ │ │ │ │ │ ├── MachineryTypeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── MachineryExcelVo.java │ │ │ │ │ │ │ │ ├── MachineryQueryVo.java │ │ │ │ │ │ │ │ ├── MachineryStatusQueryVo.java │ │ │ │ │ │ │ │ └── MachineryTypeQueryVo.java │ │ │ │ │ │ │ ├── issue │ │ │ │ │ │ │ ├── IssueComponentController.java │ │ │ │ │ │ │ ├── IssueMethodController.java │ │ │ │ │ │ │ ├── IssueModeController.java │ │ │ │ │ │ │ ├── IssueProblemSubmitController.java │ │ │ │ │ │ │ ├── IssueSourceController.java │ │ │ │ │ │ │ ├── IssueTypeController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── IssueComponentQueryVo.java │ │ │ │ │ │ │ │ ├── IssueMethodQueryVo.java │ │ │ │ │ │ │ │ ├── IssueModeQueryVo.java │ │ │ │ │ │ │ │ ├── IssueProblemSubmitQueryVo.java │ │ │ │ │ │ │ │ ├── IssueSourceQueryVo.java │ │ │ │ │ │ │ │ └── IssueTypeQueryVo.java │ │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ ├── ClientController.java │ │ │ │ │ │ │ ├── ColorController.java │ │ │ │ │ │ │ ├── ItemController.java │ │ │ │ │ │ │ ├── ItemTypeController.java │ │ │ │ │ │ │ ├── ModelController.java │ │ │ │ │ │ │ ├── PanHaoController.java │ │ │ │ │ │ │ ├── ProductBomController.java │ │ │ │ │ │ │ ├── ProductSopController.java │ │ │ │ │ │ │ ├── SpecController.java │ │ │ │ │ │ │ ├── UnitConversionController.java │ │ │ │ │ │ │ ├── UnitMeasureController.java │ │ │ │ │ │ │ ├── VendorController.java │ │ │ │ │ │ │ ├── WorkShopController.java │ │ │ │ │ │ │ ├── WorkStationController.java │ │ │ │ │ │ │ ├── WorkStationMachineController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── ClientExcelVo.java │ │ │ │ │ │ │ │ ├── ClientQueryVo.java │ │ │ │ │ │ │ │ ├── ColorExportVo.java │ │ │ │ │ │ │ │ ├── ColorQueryVo.java │ │ │ │ │ │ │ │ ├── ItemExcelVo.java │ │ │ │ │ │ │ │ ├── ItemQueryVo.java │ │ │ │ │ │ │ │ ├── ItemTypeQueryVo.java │ │ │ │ │ │ │ │ ├── ModelExportVo.java │ │ │ │ │ │ │ │ ├── ModelQueryVo.java │ │ │ │ │ │ │ │ ├── NormQueryVo.java │ │ │ │ │ │ │ │ ├── PanHaoExportVo.java │ │ │ │ │ │ │ │ ├── PanHaoQueryVo.java │ │ │ │ │ │ │ │ ├── ProductBomQueryVo.java │ │ │ │ │ │ │ │ ├── RouteProcessVo.java │ │ │ │ │ │ │ │ ├── SpecExportVo.java │ │ │ │ │ │ │ │ ├── UnitMeasureExcelVo.java │ │ │ │ │ │ │ │ ├── UnitMeasureQueryVo.java │ │ │ │ │ │ │ │ ├── VendorExcelVo.java │ │ │ │ │ │ │ │ ├── VendorQueryVo.java │ │ │ │ │ │ │ │ ├── WorkShopQueryVo.java │ │ │ │ │ │ │ │ ├── WorkstationExcelVo.java │ │ │ │ │ │ │ │ ├── WorkstationMachineQueryVo.java │ │ │ │ │ │ │ │ └── WorkstationQueryVo.java │ │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ ├── InboundController.java │ │ │ │ │ │ │ ├── InventoryStatisticsController.java │ │ │ │ │ │ │ ├── LabelController.java │ │ │ │ │ │ │ ├── OtherInboundController.java │ │ │ │ │ │ │ ├── OutboundController.java │ │ │ │ │ │ │ ├── OutboundRecordController.java │ │ │ │ │ │ │ ├── ProductPickController.java │ │ │ │ │ │ │ ├── PurchaseOrderController.java │ │ │ │ │ │ │ ├── PurchaseOrderReturnController.java │ │ │ │ │ │ │ ├── QuoteController.java │ │ │ │ │ │ │ ├── QuoteModelController.java │ │ │ │ │ │ │ ├── ReturnsController.java │ │ │ │ │ │ │ ├── SaleController.java │ │ │ │ │ │ │ ├── SaleItemPriceController.java │ │ │ │ │ │ │ ├── SemiLabelController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── DetailedInventoryResponseVO.java │ │ │ │ │ │ │ │ ├── InboundExcelVo.java │ │ │ │ │ │ │ │ ├── InboundQueryVo.java │ │ │ │ │ │ │ │ ├── InboundVo.java │ │ │ │ │ │ │ │ ├── InventoryStatisticsQueryVO.java │ │ │ │ │ │ │ │ ├── InventoryStatisticsVO.java │ │ │ │ │ │ │ │ ├── ItemPriceExportVo.java │ │ │ │ │ │ │ │ ├── LabelExportVo.java │ │ │ │ │ │ │ │ ├── LabelQueryVo.java │ │ │ │ │ │ │ │ ├── OtherInboundQueryVo.java │ │ │ │ │ │ │ │ ├── OutBoundAllExcelVo.java │ │ │ │ │ │ │ │ ├── OutBoundExcelVo.java │ │ │ │ │ │ │ │ ├── OutBoundSaleItemResVO.java │ │ │ │ │ │ │ │ ├── OutBoundSaleReqVO.java │ │ │ │ │ │ │ │ ├── OutBoundSaleResVO.java │ │ │ │ │ │ │ │ ├── OutBoundVo.java │ │ │ │ │ │ │ │ ├── OutboundItemVo.java │ │ │ │ │ │ │ │ ├── OutboundQueryVo.java │ │ │ │ │ │ │ │ ├── OutboundRecordResVo.java │ │ │ │ │ │ │ │ ├── OutboundRecordVo.java │ │ │ │ │ │ │ │ ├── PrintDataVo.java │ │ │ │ │ │ │ │ ├── PrintSaleDateVo.java │ │ │ │ │ │ │ │ ├── ProductListQueryVo.java │ │ │ │ │ │ │ │ ├── ProductPickAllExportVo.java │ │ │ │ │ │ │ │ ├── ProductPickExportVo.java │ │ │ │ │ │ │ │ ├── ProductPickQueryVo.java │ │ │ │ │ │ │ │ ├── ProductReqVo.java │ │ │ │ │ │ │ │ ├── ProductResVo.java │ │ │ │ │ │ │ │ ├── PurchaseOrderExcelVo.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturnExcelVo.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturnQueryVo.java │ │ │ │ │ │ │ │ ├── PurchaseOrderVo.java │ │ │ │ │ │ │ │ ├── QuoteExportVo.java │ │ │ │ │ │ │ │ ├── QuoteItemQueryVo.java │ │ │ │ │ │ │ │ ├── QuoteModelExportVo.java │ │ │ │ │ │ │ │ ├── QuoteModelQueryVo.java │ │ │ │ │ │ │ │ ├── QuoteQueryVo.java │ │ │ │ │ │ │ │ ├── ReceiptItemQueryVo.java │ │ │ │ │ │ │ │ ├── ReceiptQueryVo.java │ │ │ │ │ │ │ │ ├── ReturnExcelVo.java │ │ │ │ │ │ │ │ ├── ReturnsQueryVo.java │ │ │ │ │ │ │ │ ├── SaleAllExcelVo.java │ │ │ │ │ │ │ │ ├── SaleCountQueryVo.java │ │ │ │ │ │ │ │ ├── SaleCountVo.java │ │ │ │ │ │ │ │ ├── SaleExcelVo.java │ │ │ │ │ │ │ │ ├── SaleItemPriceQueryVo.java │ │ │ │ │ │ │ │ ├── SaleItemPriceVo.java │ │ │ │ │ │ │ │ ├── SaleProgressResVo.java │ │ │ │ │ │ │ │ ├── SaleQueryVo.java │ │ │ │ │ │ │ │ ├── SemiLabelAllExportVo.java │ │ │ │ │ │ │ │ ├── SemiLabelExportVo.java │ │ │ │ │ │ │ │ └── SemiLabelQueryVo.java │ │ │ │ │ │ │ ├── plan │ │ │ │ │ │ │ ├── PlanDayController.java │ │ │ │ │ │ │ ├── PlanMonthController.java │ │ │ │ │ │ │ ├── shift │ │ │ │ │ │ │ │ ├── ShiftAttendanceController.java │ │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ └── SelectShiftAttendanceQuery.java │ │ │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ │ │ ├── InsertShiftAttendanceReqVo.java │ │ │ │ │ │ │ │ │ └── UpdateShiftAttendanceReqVo.java │ │ │ │ │ │ │ │ │ └── response │ │ │ │ │ │ │ │ │ └── SelectShiftAttendanceResVo.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ ├── SelectPlanDayQuery.java │ │ │ │ │ │ │ │ └── SelectPlanMonthQuery.java │ │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ │ ├── InsertPlanDayReqVo.java │ │ │ │ │ │ │ │ ├── InsertPlanMonthReqVo.java │ │ │ │ │ │ │ │ ├── UpdatePlanDayReqVo.java │ │ │ │ │ │ │ │ └── UpdatePlanMonthReqVo.java │ │ │ │ │ │ │ │ └── response │ │ │ │ │ │ │ │ ├── SelectPlanDayResVo.java │ │ │ │ │ │ │ │ └── SelectPlanMonthResVo.java │ │ │ │ │ │ │ ├── pro │ │ │ │ │ │ │ ├── FeedbackController.java │ │ │ │ │ │ │ ├── FeedbackEquipmentController.java │ │ │ │ │ │ │ ├── FeedbackHoursController.java │ │ │ │ │ │ │ ├── ProcessController.java │ │ │ │ │ │ │ ├── RouteController.java │ │ │ │ │ │ │ ├── RouteProcessController.java │ │ │ │ │ │ │ ├── RouteProductController.java │ │ │ │ │ │ │ ├── TaskController.java │ │ │ │ │ │ │ ├── TemporaryWorkHoursController.java │ │ │ │ │ │ │ ├── WorkHoursTypeController.java │ │ │ │ │ │ │ ├── WorkOrderBomController.java │ │ │ │ │ │ │ ├── WorkOrderController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── EquationTimeVo.java │ │ │ │ │ │ │ │ ├── FeedBackEquipmentQueryVo.java │ │ │ │ │ │ │ │ ├── FeedBackEquipmentStatusVo.java │ │ │ │ │ │ │ │ ├── FeedBackEquipmentVo.java │ │ │ │ │ │ │ │ ├── FeedbackHoursExcelVo.java │ │ │ │ │ │ │ │ ├── FeedbackHoursListResult.java │ │ │ │ │ │ │ │ ├── FeedbackHoursVo.java │ │ │ │ │ │ │ │ ├── FeedbackQueryVo.java │ │ │ │ │ │ │ │ ├── ProTaskQueryVo.java │ │ │ │ │ │ │ │ ├── ProTaskVo.java │ │ │ │ │ │ │ │ ├── ProWorkorderVo.java │ │ │ │ │ │ │ │ ├── ProcessExcelVo.java │ │ │ │ │ │ │ │ ├── ProcessQueryVo.java │ │ │ │ │ │ │ │ ├── ProfeedBackVo.java │ │ │ │ │ │ │ │ ├── RouteExcelVo.java │ │ │ │ │ │ │ │ ├── RoutePageReqVo.java │ │ │ │ │ │ │ │ ├── RouteProcessQueryVo.java │ │ │ │ │ │ │ │ ├── RouteProductBomQueryVo.java │ │ │ │ │ │ │ │ ├── RouteProductQueryVo.java │ │ │ │ │ │ │ │ ├── TaskIssueQueryVo.java │ │ │ │ │ │ │ │ ├── TaskListByConditionalVo.java │ │ │ │ │ │ │ │ ├── TaskOrderVo.java │ │ │ │ │ │ │ │ ├── TaskQueryVo.java │ │ │ │ │ │ │ │ ├── TaskUpdateVo.java │ │ │ │ │ │ │ │ ├── TemporaryWorkHoursExcelVo.java │ │ │ │ │ │ │ │ ├── TemporaryWorkHoursListResult.java │ │ │ │ │ │ │ │ ├── TemporaryWorkHoursVo.java │ │ │ │ │ │ │ │ ├── WorkHoursTypeVo.java │ │ │ │ │ │ │ │ ├── WorkOrderQueryVo.java │ │ │ │ │ │ │ │ ├── WorkerOrderFindVo.java │ │ │ │ │ │ │ │ ├── WorkorderBaseVo.java │ │ │ │ │ │ │ │ ├── WorkorderBomQueryVo.java │ │ │ │ │ │ │ │ ├── WorkorderExcelVo.java │ │ │ │ │ │ │ │ └── WorkstationMachVo.java │ │ │ │ │ │ │ ├── qc │ │ │ │ │ │ │ ├── DeviceController.java │ │ │ │ │ │ │ ├── OtherRecordController.java │ │ │ │ │ │ │ ├── OtherStandardController.java │ │ │ │ │ │ │ ├── ProcessRecordController.java │ │ │ │ │ │ │ ├── ProjectClassifyController.java │ │ │ │ │ │ │ ├── ProjectController.java │ │ │ │ │ │ │ ├── ReceiveRecordController.java │ │ │ │ │ │ │ ├── ReceiveStandardController.java │ │ │ │ │ │ │ ├── StandardController.java │ │ │ │ │ │ │ ├── StandardDetailController.java │ │ │ │ │ │ │ ├── WayController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── DeviceExcelVo.java │ │ │ │ │ │ │ │ ├── DeviceListener.java │ │ │ │ │ │ │ │ ├── DeviceQueryVo.java │ │ │ │ │ │ │ │ ├── InspectDeviceVo.java │ │ │ │ │ │ │ │ ├── OtherRecordExcelVo.java │ │ │ │ │ │ │ │ ├── OtherRecordQueryVo.java │ │ │ │ │ │ │ │ ├── OtherRecordVo.java │ │ │ │ │ │ │ │ ├── OtherStandardQueryVo.java │ │ │ │ │ │ │ │ ├── OtherStandardResultVo.java │ │ │ │ │ │ │ │ ├── OtherStandardVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordExcelVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordItemVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordItemsVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordQueryVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordResultVo.java │ │ │ │ │ │ │ │ ├── ProcessRecordVo.java │ │ │ │ │ │ │ │ ├── ProjectClassifyExcelVo.java │ │ │ │ │ │ │ │ ├── ProjectClassifyListener.java │ │ │ │ │ │ │ │ ├── ProjectClassifyQueryVo.java │ │ │ │ │ │ │ │ ├── ProjectExcelVo.java │ │ │ │ │ │ │ │ ├── ProjectListener.java │ │ │ │ │ │ │ │ ├── ProjectQueryVo.java │ │ │ │ │ │ │ │ ├── ReceiveRecordExcelVo.java │ │ │ │ │ │ │ │ ├── ReceiveRecordItemsVo.java │ │ │ │ │ │ │ │ ├── ReceiveRecordQueryVo.java │ │ │ │ │ │ │ │ ├── ReceiveRecordResultVo.java │ │ │ │ │ │ │ │ ├── ReceiveRecordVo.java │ │ │ │ │ │ │ │ ├── ReceiveStandardQueryVo.java │ │ │ │ │ │ │ │ ├── ReceiveStandardVo.java │ │ │ │ │ │ │ │ ├── StandardQueryVo.java │ │ │ │ │ │ │ │ ├── StandardSaveVo.java │ │ │ │ │ │ │ │ ├── StandardVo.java │ │ │ │ │ │ │ │ ├── WayExcelListener.java │ │ │ │ │ │ │ │ ├── WayExcelVo.java │ │ │ │ │ │ │ │ └── WayQueryVo.java │ │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ ├── SysUserController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ └── UserPageReqVo.java │ │ │ │ │ │ │ ├── wh │ │ │ │ │ │ │ ├── InboundRecBillController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ │ ├── InboundRecBillItemQueryVo.java │ │ │ │ │ │ │ │ ├── InboundRecBillItemVo.java │ │ │ │ │ │ │ │ ├── InboundRecBillQueryVo.java │ │ │ │ │ │ │ │ └── InboundRecBillVo.java │ │ │ │ │ │ │ └── wm │ │ │ │ │ │ │ ├── WareHouseAreaController.java │ │ │ │ │ │ │ ├── WareHouseController.java │ │ │ │ │ │ │ ├── WareHouseLocationController.java │ │ │ │ │ │ │ └── vo │ │ │ │ │ │ │ ├── WareHouseAreaQueryVo.java │ │ │ │ │ │ │ ├── WareHouseLocationQueryVo.java │ │ │ │ │ │ │ └── WareHouseQueryVo.java │ │ │ │ │ │ ├── dal │ │ │ │ │ │ ├── dataobject │ │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ │ ├── AutoCodePart.java │ │ │ │ │ │ │ │ ├── AutoCodeResult.java │ │ │ │ │ │ │ │ └── AutoCodeRule.java │ │ │ │ │ │ │ ├── cla │ │ │ │ │ │ │ │ ├── ClassMember.java │ │ │ │ │ │ │ │ ├── ClassPlan.java │ │ │ │ │ │ │ │ ├── ClassPlanMember.java │ │ │ │ │ │ │ │ ├── ClassTeam.java │ │ │ │ │ │ │ │ ├── ClassTeamType.java │ │ │ │ │ │ │ │ └── PeopleInfo.java │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ └── CustomDictData.java │ │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ │ └── SysDept.java │ │ │ │ │ │ │ ├── dv │ │ │ │ │ │ │ │ ├── Machinery.java │ │ │ │ │ │ │ │ ├── MachineryStatus.java │ │ │ │ │ │ │ │ └── MachineryType.java │ │ │ │ │ │ │ ├── issue │ │ │ │ │ │ │ │ ├── IssueComponent.java │ │ │ │ │ │ │ │ ├── IssueMethod.java │ │ │ │ │ │ │ │ ├── IssueMode.java │ │ │ │ │ │ │ │ ├── IssueProblemSubmit.java │ │ │ │ │ │ │ │ ├── IssueSource.java │ │ │ │ │ │ │ │ └── IssueType.java │ │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ │ ├── Client.java │ │ │ │ │ │ │ │ ├── Color.java │ │ │ │ │ │ │ │ ├── Item.java │ │ │ │ │ │ │ │ ├── ItemType.java │ │ │ │ │ │ │ │ ├── Model.java │ │ │ │ │ │ │ │ ├── PanHao.java │ │ │ │ │ │ │ │ ├── ProductBom.java │ │ │ │ │ │ │ │ ├── Spec.java │ │ │ │ │ │ │ │ ├── UnitMeasure.java │ │ │ │ │ │ │ │ ├── Vendor.java │ │ │ │ │ │ │ │ ├── WorkShop.java │ │ │ │ │ │ │ │ ├── WorkStation.java │ │ │ │ │ │ │ │ └── WorkStationMachine.java │ │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ │ ├── Inbound.java │ │ │ │ │ │ │ │ ├── InboundItem.java │ │ │ │ │ │ │ │ ├── Label.java │ │ │ │ │ │ │ │ ├── OtherInbound.java │ │ │ │ │ │ │ │ ├── OtherInboundItem.java │ │ │ │ │ │ │ │ ├── Outbound.java │ │ │ │ │ │ │ │ ├── OutboundItem.java │ │ │ │ │ │ │ │ ├── OutboundItemLabel.java │ │ │ │ │ │ │ │ ├── OutboundRecord.java │ │ │ │ │ │ │ │ ├── ProductPick.java │ │ │ │ │ │ │ │ ├── ProductPickItem.java │ │ │ │ │ │ │ │ ├── PurchaseOrder.java │ │ │ │ │ │ │ │ ├── PurchaseOrderItem.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturn.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturnItem.java │ │ │ │ │ │ │ │ ├── Quote.java │ │ │ │ │ │ │ │ ├── QuoteItem.java │ │ │ │ │ │ │ │ ├── QuoteModel.java │ │ │ │ │ │ │ │ ├── Returns.java │ │ │ │ │ │ │ │ ├── ReturnsItem.java │ │ │ │ │ │ │ │ ├── Sale.java │ │ │ │ │ │ │ │ ├── SaleItem.java │ │ │ │ │ │ │ │ ├── SaleItemPrice.java │ │ │ │ │ │ │ │ ├── SemiLabel.java │ │ │ │ │ │ │ │ └── SemiLabelItem.java │ │ │ │ │ │ │ ├── plan │ │ │ │ │ │ │ │ ├── PlanDay.java │ │ │ │ │ │ │ │ ├── PlanMonth.java │ │ │ │ │ │ │ │ └── shift │ │ │ │ │ │ │ │ │ └── ShiftAttendance.java │ │ │ │ │ │ │ ├── pro │ │ │ │ │ │ │ │ ├── EquipmentTimeVo.java │ │ │ │ │ │ │ │ ├── Feedback.java │ │ │ │ │ │ │ │ ├── FeedbackEquStatus.java │ │ │ │ │ │ │ │ ├── FeedbackEquipment.java │ │ │ │ │ │ │ │ ├── FeedbackHours.java │ │ │ │ │ │ │ │ ├── FeedbackStatus.java │ │ │ │ │ │ │ │ ├── GanttData.java │ │ │ │ │ │ │ │ ├── GanttLink.java │ │ │ │ │ │ │ │ ├── GanttTask.java │ │ │ │ │ │ │ │ ├── Process.java │ │ │ │ │ │ │ │ ├── Route.java │ │ │ │ │ │ │ │ ├── RouteProcess.java │ │ │ │ │ │ │ │ ├── RouteProduct.java │ │ │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ │ │ ├── TemporaryWorkHours.java │ │ │ │ │ │ │ │ ├── WorkHoursType.java │ │ │ │ │ │ │ │ ├── WorkOrder.java │ │ │ │ │ │ │ │ └── WorkOrderBom.java │ │ │ │ │ │ │ ├── qc │ │ │ │ │ │ │ │ ├── Device.java │ │ │ │ │ │ │ │ ├── OtherPicture.java │ │ │ │ │ │ │ │ ├── OtherRecord.java │ │ │ │ │ │ │ │ ├── OtherRecordItem.java │ │ │ │ │ │ │ │ ├── OtherRecordResult.java │ │ │ │ │ │ │ │ ├── OtherStandard.java │ │ │ │ │ │ │ │ ├── OtherStandardItem.java │ │ │ │ │ │ │ │ ├── ProcessPicture.java │ │ │ │ │ │ │ │ ├── ProcessRecord.java │ │ │ │ │ │ │ │ ├── ProcessRecordItem.java │ │ │ │ │ │ │ │ ├── ProcessRecordResult.java │ │ │ │ │ │ │ │ ├── Project.java │ │ │ │ │ │ │ │ ├── ProjectClassify.java │ │ │ │ │ │ │ │ ├── ProjectDevice.java │ │ │ │ │ │ │ │ ├── ReceivePicture.java │ │ │ │ │ │ │ │ ├── ReceiveRecord.java │ │ │ │ │ │ │ │ ├── ReceiveRecordItem.java │ │ │ │ │ │ │ │ ├── ReceiveRecordResult.java │ │ │ │ │ │ │ │ ├── ReceiveStandard.java │ │ │ │ │ │ │ │ ├── ReceiveStandardItem.java │ │ │ │ │ │ │ │ ├── Standard.java │ │ │ │ │ │ │ │ ├── StandardDetail.java │ │ │ │ │ │ │ │ └── Way.java │ │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ │ └── SysUser.java │ │ │ │ │ │ │ ├── wh │ │ │ │ │ │ │ │ ├── InboundRecBill.java │ │ │ │ │ │ │ │ └── InboundRecBillItem.java │ │ │ │ │ │ │ └── wm │ │ │ │ │ │ │ │ ├── WareHouse.java │ │ │ │ │ │ │ │ ├── WareHouseArea.java │ │ │ │ │ │ │ │ └── WareHouseLocation.java │ │ │ │ │ │ └── mysql │ │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ ├── AutoCodePartMapper.java │ │ │ │ │ │ │ ├── AutoCodeResultMapper.java │ │ │ │ │ │ │ └── AutoCodeRuleMapper.java │ │ │ │ │ │ │ ├── cla │ │ │ │ │ │ │ ├── ClassMemberMapper.java │ │ │ │ │ │ │ ├── ClassPlanMapper.java │ │ │ │ │ │ │ ├── ClassPlanMemberMapper.java │ │ │ │ │ │ │ ├── ClassTeamMapper.java │ │ │ │ │ │ │ └── ClassTeamTypeMapper.java │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── CustomDictDataMapper.java │ │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ └── SysDeptMapper.java │ │ │ │ │ │ │ ├── dv │ │ │ │ │ │ │ ├── MachineryMapper.java │ │ │ │ │ │ │ ├── MachineryStatusMapper.java │ │ │ │ │ │ │ └── MachineryTypeMapper.java │ │ │ │ │ │ │ ├── issue │ │ │ │ │ │ │ ├── IssueComponentMapper.java │ │ │ │ │ │ │ ├── IssueMethodMapper.java │ │ │ │ │ │ │ ├── IssueModeMapper.java │ │ │ │ │ │ │ ├── IssueProblemSubmitMapper.java │ │ │ │ │ │ │ ├── IssueSourceMapper.java │ │ │ │ │ │ │ └── IssueTypeMapper.java │ │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ ├── ClientMapper.java │ │ │ │ │ │ │ ├── ColorMapper.java │ │ │ │ │ │ │ ├── ItemMapper.java │ │ │ │ │ │ │ ├── ItemTypeMapper.java │ │ │ │ │ │ │ ├── ModelMapper.java │ │ │ │ │ │ │ ├── PanHaoMapper.java │ │ │ │ │ │ │ ├── ProductBomMapper.java │ │ │ │ │ │ │ ├── SpecMapper.java │ │ │ │ │ │ │ ├── UnitMeasureMapper.java │ │ │ │ │ │ │ ├── VendorMapper.java │ │ │ │ │ │ │ ├── WorkShopMapper.java │ │ │ │ │ │ │ ├── WorkStationMachineMapper.java │ │ │ │ │ │ │ └── WorkStationMapper.java │ │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ ├── InboundItemMapper.java │ │ │ │ │ │ │ ├── InboundMapper.java │ │ │ │ │ │ │ ├── InventoryStatisticsQueryVOMapper.java │ │ │ │ │ │ │ ├── LabelMapper.java │ │ │ │ │ │ │ ├── OtherInboundItemMapper.java │ │ │ │ │ │ │ ├── OtherInboundMapper.java │ │ │ │ │ │ │ ├── OutboundItemLabelMapper.java │ │ │ │ │ │ │ ├── OutboundItemMapper.java │ │ │ │ │ │ │ ├── OutboundMapper.java │ │ │ │ │ │ │ ├── OutboundRecordMapper.java │ │ │ │ │ │ │ ├── ProductPickItemMapper.java │ │ │ │ │ │ │ ├── ProductPickMapper.java │ │ │ │ │ │ │ ├── PurchaseOrderItemMapper.java │ │ │ │ │ │ │ ├── PurchaseOrderMapper.java │ │ │ │ │ │ │ ├── PurchaseOrderReturnItemMapper.java │ │ │ │ │ │ │ ├── PurchaseOrderReturnMapper.java │ │ │ │ │ │ │ ├── QuoteItemMapper.java │ │ │ │ │ │ │ ├── QuoteMapper.java │ │ │ │ │ │ │ ├── QuoteModelMapper.java │ │ │ │ │ │ │ ├── ReturnsItemMapper.java │ │ │ │ │ │ │ ├── ReturnsMapper.java │ │ │ │ │ │ │ ├── SaleItemMapper.java │ │ │ │ │ │ │ ├── SaleItemPriceMapper.java │ │ │ │ │ │ │ ├── SaleMapper.java │ │ │ │ │ │ │ ├── SemiLabelItemMapper.java │ │ │ │ │ │ │ └── SemiLabelMapper.java │ │ │ │ │ │ │ ├── plan │ │ │ │ │ │ │ ├── PlanDayMapper.java │ │ │ │ │ │ │ ├── PlanMonthMapper.java │ │ │ │ │ │ │ └── shift │ │ │ │ │ │ │ │ └── ShiftAttendanceMapper.java │ │ │ │ │ │ │ ├── pro │ │ │ │ │ │ │ ├── FeedBackStatusMapper.java │ │ │ │ │ │ │ ├── FeedbackEquStatusMapper.java │ │ │ │ │ │ │ ├── FeedbackEquipmentMapper.java │ │ │ │ │ │ │ ├── FeedbackHoursMapper.java │ │ │ │ │ │ │ ├── FeedbackMapper.java │ │ │ │ │ │ │ ├── ProcessMapper.java │ │ │ │ │ │ │ ├── RouteMapper.java │ │ │ │ │ │ │ ├── RouteProcessMapper.java │ │ │ │ │ │ │ ├── RouteProductMapper.java │ │ │ │ │ │ │ ├── TaskMapper.java │ │ │ │ │ │ │ ├── TemporaryWorkHoursMapper.java │ │ │ │ │ │ │ ├── WorkHoursTypeMapper.java │ │ │ │ │ │ │ ├── WorkOrderBomMapper.java │ │ │ │ │ │ │ └── WorkOrderMapper.java │ │ │ │ │ │ │ ├── qc │ │ │ │ │ │ │ ├── DeviceMapper.java │ │ │ │ │ │ │ ├── OtherPictureMapper.java │ │ │ │ │ │ │ ├── OtherRecordItemMapper.java │ │ │ │ │ │ │ ├── OtherRecordMapper.java │ │ │ │ │ │ │ ├── OtherRecordResultMapper.java │ │ │ │ │ │ │ ├── OtherStandardItemMapper.java │ │ │ │ │ │ │ ├── OtherStandardMapper.java │ │ │ │ │ │ │ ├── ProcessPictureMapper.java │ │ │ │ │ │ │ ├── ProcessRecordItemMapper.java │ │ │ │ │ │ │ ├── ProcessRecordMapper.java │ │ │ │ │ │ │ ├── ProcessRecordResultMapper.java │ │ │ │ │ │ │ ├── ProjectClassifyMapper.java │ │ │ │ │ │ │ ├── ProjectDeviceMapper.java │ │ │ │ │ │ │ ├── ProjectMapper.java │ │ │ │ │ │ │ ├── ReceivePictureMapper.java │ │ │ │ │ │ │ ├── ReceiveRecordItemMapper.java │ │ │ │ │ │ │ ├── ReceiveRecordMapper.java │ │ │ │ │ │ │ ├── ReceiveRecordResultMapper.java │ │ │ │ │ │ │ ├── ReceiveStandardItemMapper.java │ │ │ │ │ │ │ ├── ReceiveStandardMapper.java │ │ │ │ │ │ │ ├── StandardDetailMapper.java │ │ │ │ │ │ │ ├── StandardMapper.java │ │ │ │ │ │ │ └── WayMapper.java │ │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ └── SysUserMapper.java │ │ │ │ │ │ │ ├── wh │ │ │ │ │ │ │ ├── InboundRecBillItemMapper.java │ │ │ │ │ │ │ └── InboundRecBillMapper.java │ │ │ │ │ │ │ └── wm │ │ │ │ │ │ │ ├── WareHouseAreaMapper.java │ │ │ │ │ │ │ ├── WareHouseLocationMapper.java │ │ │ │ │ │ │ └── WareHouseMapper.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ ├── AutoCodePartService.java │ │ │ │ │ │ │ ├── AutoCodeResultService.java │ │ │ │ │ │ │ └── AutoCodeRuleService.java │ │ │ │ │ │ ├── cla │ │ │ │ │ │ │ ├── ClassMemberService.java │ │ │ │ │ │ │ ├── ClassPlanMemberService.java │ │ │ │ │ │ │ ├── ClassPlanService.java │ │ │ │ │ │ │ ├── ClassTeamService.java │ │ │ │ │ │ │ └── ClassTeamTypeService.java │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── CustomDictDataService.java │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ └── SysDeptService.java │ │ │ │ │ │ ├── dv │ │ │ │ │ │ │ ├── MachineryService.java │ │ │ │ │ │ │ ├── MachineryStatusService.java │ │ │ │ │ │ │ └── MachineryTypeService.java │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── auto │ │ │ │ │ │ │ │ ├── AutoCodePartServiceImpl.java │ │ │ │ │ │ │ │ ├── AutoCodeResultServiceImpl.java │ │ │ │ │ │ │ │ └── AutoCodeRuleServiceImpl.java │ │ │ │ │ │ │ ├── cla │ │ │ │ │ │ │ │ ├── ClassMemberServiceImpl.java │ │ │ │ │ │ │ │ ├── ClassPlanMemberServiceImpl.java │ │ │ │ │ │ │ │ ├── ClassPlanServiceImpl.java │ │ │ │ │ │ │ │ ├── ClassTeamServiceImpl.java │ │ │ │ │ │ │ │ └── ClassTeamTypeServiceImpl.java │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ └── CustomDictDataServiceImpl.java │ │ │ │ │ │ │ ├── dept │ │ │ │ │ │ │ │ └── SysDeptServiceImpl.java │ │ │ │ │ │ │ ├── dv │ │ │ │ │ │ │ │ ├── MachineryServiceImpl.java │ │ │ │ │ │ │ │ ├── MachineryStatusServiceImpl.java │ │ │ │ │ │ │ │ └── MachineryTypeServiceImpl.java │ │ │ │ │ │ │ ├── issue │ │ │ │ │ │ │ │ ├── IssueComponentServiceImpl.java │ │ │ │ │ │ │ │ ├── IssueMethodServiceImpl.java │ │ │ │ │ │ │ │ ├── IssueModeServiceImpl.java │ │ │ │ │ │ │ │ ├── IssueProblemSubmitServiceImpl.java │ │ │ │ │ │ │ │ ├── IssueSourceServiceImpl.java │ │ │ │ │ │ │ │ └── IssueTypeServiceImpl.java │ │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ │ ├── ClientServiceImpl.java │ │ │ │ │ │ │ │ ├── ColorServiceImpl.java │ │ │ │ │ │ │ │ ├── ItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ItemTypeServiceImpl.java │ │ │ │ │ │ │ │ ├── ModelServiceImpl.java │ │ │ │ │ │ │ │ ├── PanHaoServiceImpl.java │ │ │ │ │ │ │ │ ├── ProductBomServiceImpl.java │ │ │ │ │ │ │ │ ├── SpecServiceImpl.java │ │ │ │ │ │ │ │ ├── UnitMeasureServiceImpl.java │ │ │ │ │ │ │ │ ├── VendorServiceImpl.java │ │ │ │ │ │ │ │ ├── WorkShopServiceImpl.java │ │ │ │ │ │ │ │ ├── WorkStationMachineServiceImpl.java │ │ │ │ │ │ │ │ └── WorkStationServiceImpl.java │ │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ │ ├── InboundItemServiceImpl.java │ │ │ │ │ │ │ │ ├── InboundServiceImpl.java │ │ │ │ │ │ │ │ ├── InventoryStatisticsServiceImpl.java │ │ │ │ │ │ │ │ ├── LabelServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherInboundItemServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherInboundServiceImpl.java │ │ │ │ │ │ │ │ ├── OutboundItemLabelServiceImpl.java │ │ │ │ │ │ │ │ ├── OutboundItemServiceImpl.java │ │ │ │ │ │ │ │ ├── OutboundRecordServiceImpl.java │ │ │ │ │ │ │ │ ├── OutboundServiceImpl.java │ │ │ │ │ │ │ │ ├── ProductPickItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ProductPickServiceImpl.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturnItemServiceImpl.java │ │ │ │ │ │ │ │ ├── PurchaseOrderReturnServiceImpl.java │ │ │ │ │ │ │ │ ├── PurchaseOrderServiceImpl.java │ │ │ │ │ │ │ │ ├── PurchaseOrdertItemServiceImpl.java │ │ │ │ │ │ │ │ ├── QuoteItemServiceImpl.java │ │ │ │ │ │ │ │ ├── QuoteModelServiceImpl.java │ │ │ │ │ │ │ │ ├── QuoteServiceImpl.java │ │ │ │ │ │ │ │ ├── ReturnsItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ReturnsServiceImpl.java │ │ │ │ │ │ │ │ ├── SaleItemPriceServiceImpl.java │ │ │ │ │ │ │ │ ├── SaleItemServiceImpl.java │ │ │ │ │ │ │ │ ├── SaleServiceImpl.java │ │ │ │ │ │ │ │ ├── SemiLabelItemServiceImpl.java │ │ │ │ │ │ │ │ └── SemiLabelServiceImpl.java │ │ │ │ │ │ │ ├── plan │ │ │ │ │ │ │ │ ├── PlanDayServiceImpl.java │ │ │ │ │ │ │ │ ├── PlanMonthServiceImpl.java │ │ │ │ │ │ │ │ └── shift │ │ │ │ │ │ │ │ │ └── ShiftAttendanceServiceImpl.java │ │ │ │ │ │ │ ├── pro │ │ │ │ │ │ │ │ ├── FeedbackEquStatusServiceImpl.java │ │ │ │ │ │ │ │ ├── FeedbackEquipmentServiceImpl.java │ │ │ │ │ │ │ │ ├── FeedbackHoursServiceImpl.java │ │ │ │ │ │ │ │ ├── FeedbackServiceImpl.java │ │ │ │ │ │ │ │ ├── FeedbackStatusServiceImpl.java │ │ │ │ │ │ │ │ ├── ProcessServiceImpl.java │ │ │ │ │ │ │ │ ├── RouteProcessServiceImpl.java │ │ │ │ │ │ │ │ ├── RouteProductServiceImpl.java │ │ │ │ │ │ │ │ ├── RouteServiceImpl.java │ │ │ │ │ │ │ │ ├── TaskServiceImpl.java │ │ │ │ │ │ │ │ ├── TemporaryWorkHoursServiceImpl.java │ │ │ │ │ │ │ │ ├── WorkHoursTypeServiceImpl.java │ │ │ │ │ │ │ │ ├── WorkOrderBomServiceImpl.java │ │ │ │ │ │ │ │ └── WorkOrderServiceImpl.java │ │ │ │ │ │ │ ├── qc │ │ │ │ │ │ │ │ ├── DeviceServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherPictureServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherRecordItemServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherRecordResultServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherRecordServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherStandardItemServiceImpl.java │ │ │ │ │ │ │ │ ├── OtherStandardServiceImpl.java │ │ │ │ │ │ │ │ ├── ProcessPictureServiceImpl.java │ │ │ │ │ │ │ │ ├── ProcessRecordItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ProcessRecordResultServiceImpl.java │ │ │ │ │ │ │ │ ├── ProcessRecordServiceImpl.java │ │ │ │ │ │ │ │ ├── ProjectClassifyServiceImpl.java │ │ │ │ │ │ │ │ ├── ProjectDeviceServiceImpl.java │ │ │ │ │ │ │ │ ├── ProjectServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceivePictureServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceiveRecordItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceiveRecordResultServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceiveRecordServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceiveStandardItemServiceImpl.java │ │ │ │ │ │ │ │ ├── ReceiveStandardServiceImpl.java │ │ │ │ │ │ │ │ ├── StandardDetailImpl.java │ │ │ │ │ │ │ │ ├── StandardServiceImpl.java │ │ │ │ │ │ │ │ └── WayServiceImpl.java │ │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ │ └── SysUserServiceImpl.java │ │ │ │ │ │ │ ├── wh │ │ │ │ │ │ │ │ ├── InboundRecBillItemServiceImpl.java │ │ │ │ │ │ │ │ └── InboundRecBillServiceImpl.java │ │ │ │ │ │ │ └── wm │ │ │ │ │ │ │ │ ├── WareHouseAreaServiceImpl.java │ │ │ │ │ │ │ │ ├── WareHouseLocationServiceImpl.java │ │ │ │ │ │ │ │ └── WareHouseServiceImpl.java │ │ │ │ │ │ ├── issue │ │ │ │ │ │ │ ├── IssueComponentService.java │ │ │ │ │ │ │ ├── IssueMethodService.java │ │ │ │ │ │ │ ├── IssueModeService.java │ │ │ │ │ │ │ ├── IssueProblemSubmitService.java │ │ │ │ │ │ │ ├── IssueSourceService.java │ │ │ │ │ │ │ └── IssueTypeService.java │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ ├── ClientService.java │ │ │ │ │ │ │ ├── ColorService.java │ │ │ │ │ │ │ ├── ItemService.java │ │ │ │ │ │ │ ├── ItemTypeService.java │ │ │ │ │ │ │ ├── ModelService.java │ │ │ │ │ │ │ ├── PanHaoService.java │ │ │ │ │ │ │ ├── ProductBomService.java │ │ │ │ │ │ │ ├── ProductSopService.java │ │ │ │ │ │ │ ├── SpecService.java │ │ │ │ │ │ │ ├── UnitMeasureService.java │ │ │ │ │ │ │ ├── VendorService.java │ │ │ │ │ │ │ ├── WorkShopService.java │ │ │ │ │ │ │ ├── WorkStationMachineService.java │ │ │ │ │ │ │ └── WorkStationService.java │ │ │ │ │ │ ├── order │ │ │ │ │ │ │ ├── InboundItemService.java │ │ │ │ │ │ │ ├── InboundService.java │ │ │ │ │ │ │ ├── InventoryStatisticsService.java │ │ │ │ │ │ │ ├── LabelService.java │ │ │ │ │ │ │ ├── OtherInboundItemService.java │ │ │ │ │ │ │ ├── OtherInboundService.java │ │ │ │ │ │ │ ├── OutboundItemLabelService.java │ │ │ │ │ │ │ ├── OutboundItemService.java │ │ │ │ │ │ │ ├── OutboundRecordService.java │ │ │ │ │ │ │ ├── OutboundService.java │ │ │ │ │ │ │ ├── ProductPickItemService.java │ │ │ │ │ │ │ ├── ProductPickService.java │ │ │ │ │ │ │ ├── PurchaseOrderItemService.java │ │ │ │ │ │ │ ├── PurchaseOrderReturnItemService.java │ │ │ │ │ │ │ ├── PurchaseOrderReturnService.java │ │ │ │ │ │ │ ├── PurchaseOrderService.java │ │ │ │ │ │ │ ├── QuoteItemService.java │ │ │ │ │ │ │ ├── QuoteModelService.java │ │ │ │ │ │ │ ├── QuoteService.java │ │ │ │ │ │ │ ├── ReturnsItemService.java │ │ │ │ │ │ │ ├── ReturnsService.java │ │ │ │ │ │ │ ├── SaleItemPriceService.java │ │ │ │ │ │ │ ├── SaleItemService.java │ │ │ │ │ │ │ ├── SaleService.java │ │ │ │ │ │ │ ├── SemiLabelItemService.java │ │ │ │ │ │ │ └── SemiLabelService.java │ │ │ │ │ │ ├── plan │ │ │ │ │ │ │ ├── PlanDayService.java │ │ │ │ │ │ │ ├── PlanMonthService.java │ │ │ │ │ │ │ └── shift │ │ │ │ │ │ │ │ └── ShiftAttendanceService.java │ │ │ │ │ │ ├── pro │ │ │ │ │ │ │ ├── FeedBackStatusService.java │ │ │ │ │ │ │ ├── FeedbackEquStatusService.java │ │ │ │ │ │ │ ├── FeedbackEquipmentService.java │ │ │ │ │ │ │ ├── FeedbackHoursService.java │ │ │ │ │ │ │ ├── FeedbackService.java │ │ │ │ │ │ │ ├── ProcessService.java │ │ │ │ │ │ │ ├── RouteProcessService.java │ │ │ │ │ │ │ ├── RouteProductService.java │ │ │ │ │ │ │ ├── RouteService.java │ │ │ │ │ │ │ ├── TaskService.java │ │ │ │ │ │ │ ├── TemporaryWorkHoursService.java │ │ │ │ │ │ │ ├── WorkHoursTypeService.java │ │ │ │ │ │ │ ├── WorkOrderBomService.java │ │ │ │ │ │ │ └── WorkOrderService.java │ │ │ │ │ │ ├── qc │ │ │ │ │ │ │ ├── DeviceService.java │ │ │ │ │ │ │ ├── OtherPictureService.java │ │ │ │ │ │ │ ├── OtherRecordItemService.java │ │ │ │ │ │ │ ├── OtherRecordResultService.java │ │ │ │ │ │ │ ├── OtherRecordService.java │ │ │ │ │ │ │ ├── OtherStandardItemService.java │ │ │ │ │ │ │ ├── OtherStandardService.java │ │ │ │ │ │ │ ├── ProcessPictureService.java │ │ │ │ │ │ │ ├── ProcessRecordItemService.java │ │ │ │ │ │ │ ├── ProcessRecordResultService.java │ │ │ │ │ │ │ ├── ProcessRecordService.java │ │ │ │ │ │ │ ├── ProjectClassifyService.java │ │ │ │ │ │ │ ├── ProjectDeviceService.java │ │ │ │ │ │ │ ├── ProjectService.java │ │ │ │ │ │ │ ├── ReceivePictureService.java │ │ │ │ │ │ │ ├── ReceiveRecordItemService.java │ │ │ │ │ │ │ ├── ReceiveRecordResultService.java │ │ │ │ │ │ │ ├── ReceiveRecordService.java │ │ │ │ │ │ │ ├── ReceiveStandardItemService.java │ │ │ │ │ │ │ ├── ReceiveStandardService.java │ │ │ │ │ │ │ ├── StandardDetailService.java │ │ │ │ │ │ │ ├── StandardService.java │ │ │ │ │ │ │ └── WayService.java │ │ │ │ │ │ ├── user │ │ │ │ │ │ │ └── SysUserService.java │ │ │ │ │ │ ├── wh │ │ │ │ │ │ │ ├── InboundRecBillItemService.java │ │ │ │ │ │ │ └── InboundRecBillService.java │ │ │ │ │ │ └── wm │ │ │ │ │ │ │ ├── WareHouseAreaService.java │ │ │ │ │ │ │ ├── WareHouseLocationService.java │ │ │ │ │ │ │ └── WareHouseService.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── AutoCodeUtil.java │ │ │ │ │ │ ├── BarcodeUtil.java │ │ │ │ │ │ ├── BeanCopyUtil.java │ │ │ │ │ │ ├── BeanCopyUtilCallBack.java │ │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ │ ├── FileTypeUtils.java │ │ │ │ │ │ ├── FileUploadUtils.java │ │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ │ ├── IdUtils.java │ │ │ │ │ │ ├── MesConstantUtils.java │ │ │ │ │ │ ├── MimeTypeUtils.java │ │ │ │ │ │ ├── MinioUtil.java │ │ │ │ │ │ ├── PageUtil.java │ │ │ │ │ │ ├── ServletUtils.java │ │ │ │ │ │ ├── SpringUtils.java │ │ │ │ │ │ └── StringUtils.java │ │ │ │ └── resources │ │ │ │ │ └── mapper │ │ │ │ │ ├── cla │ │ │ │ │ └── ClassPlanMapper.xml │ │ │ │ │ ├── md │ │ │ │ │ └── ItemMapper.xml │ │ │ │ │ ├── order │ │ │ │ │ ├── InboundMapper.xml │ │ │ │ │ ├── LabelMapper.xml │ │ │ │ │ ├── OutboundItemLabelMapper.xml │ │ │ │ │ ├── OutboundMapper.xml │ │ │ │ │ ├── PurchaseOrderMapper.xml │ │ │ │ │ ├── QuoteMapper.xml │ │ │ │ │ ├── SaleItemMapper.xml │ │ │ │ │ ├── SaleItemPriceMapper.xml │ │ │ │ │ ├── SaleMapper.xml │ │ │ │ │ └── SaleProgressMapper.xml │ │ │ │ │ ├── pro │ │ │ │ │ ├── FeedBackStatusMapper.xml │ │ │ │ │ ├── FeedbackEquStatusMapper.xml │ │ │ │ │ ├── FeedbackEquipmentMapper.xml │ │ │ │ │ ├── RouteProcessMapper.xml │ │ │ │ │ ├── TaskMapper.xml │ │ │ │ │ ├── WorkOrderMapper.xml │ │ │ │ │ └── WorkStationMapper.xml │ │ │ │ │ ├── qc │ │ │ │ │ ├── OtherRecordResult.xml │ │ │ │ │ ├── OtherStandardMapper.xml │ │ │ │ │ ├── ProcessRecordItemMapper.xml │ │ │ │ │ ├── ReceiveRecordItemMapper.xml │ │ │ │ │ ├── ReceiveStandard.xml │ │ │ │ │ └── ReceiveStandardItemMapper.xml │ │ │ │ │ └── wh │ │ │ │ │ └── InboundRecBillItemMapper.xml │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ ├── application-unit-test.yaml │ │ │ │ └── logback.xml │ │ └── pom.xml │ ├── metaxk-server │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── io │ │ │ │ └── metaxk │ │ │ │ └── server │ │ │ │ └── MetaxkServerApplication.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── additional-spring-configuration-metadata.json │ │ │ ├── application-dev.yaml │ │ │ ├── application.yaml │ │ │ └── logback-spring.xml │ ├── pom.xml │ ├── sql │ │ └── mes-duiwai-test.sql │ └── 新建模块说明.md └── 源码运行说明.md └── 部署和文档 ├── Dockerfile ├── data ├── front │ ├── conf │ │ ├── my_server_block.conf │ │ └── nginx.conf │ └── dist │ │ ├── assets │ │ ├── 403-af24f6bf.svg │ │ ├── 404-1759fece.svg │ │ ├── 500-8fda557c.svg │ │ ├── Dialog-a9e04816.css │ │ ├── avatar-3e7710d1.jpg │ │ ├── avatar-ea67286d.gif │ │ ├── constants-97c4dd5f.js │ │ ├── create-474dcc2e.css │ │ ├── detail-c1c0c34e.css │ │ ├── echarts-data-fd9a42b0.css │ │ ├── el-dropdown-item-0c6ddabc.css │ │ ├── el-space-417b6673.css │ │ ├── en-043ceffb.js │ │ ├── en-043ceffb.js.gz │ │ ├── fontawesome-webfont-2adefcbc.woff2 │ │ ├── fontawesome-webfont-7bfcab6d.eot │ │ ├── fontawesome-webfont-aa58f33f.ttf │ │ ├── fontawesome-webfont-ba0c59de.woff │ │ ├── fontawesome-webfont-fc378232.svg │ │ ├── formCreate-a3356cdc.js │ │ ├── index-ec0d3a37.css │ │ ├── login-bg-e36b8ca7.svg │ │ ├── logo-bg-1c41fdce.png │ │ ├── modelEditor-7b6aaaf0.css │ │ ├── useWatermark-bbe83b57.js │ │ ├── zh-CN-f913543d.js │ │ └── zh-CN-f913543d.js.gz │ │ ├── favicon.ico │ │ └── index.html ├── minio │ └── data │ │ └── .minio.sys │ │ ├── buckets │ │ ├── .bloomcycle.bin │ │ ├── .tracker.bin │ │ └── .usage.json │ │ ├── config │ │ ├── config.json │ │ └── iam │ │ │ └── format.json │ │ └── format.json └── sql │ └── init.sql ├── docker-compose.yml ├── install.sh └── 操作手册 └── 万界星空mes管理人员操作手册.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/README.md -------------------------------------------------------------------------------- /images/MES功能架构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/MES功能架构图.jpg -------------------------------------------------------------------------------- /images/排产功能图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/排产功能图.jpg -------------------------------------------------------------------------------- /images/排班日历.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/排班日历.png -------------------------------------------------------------------------------- /images/排班计划.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/排班计划.png -------------------------------------------------------------------------------- /images/数据大屏1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/数据大屏1.jpg -------------------------------------------------------------------------------- /images/数据大屏2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/数据大屏2.jpg -------------------------------------------------------------------------------- /images/生产任务.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/生产任务.png -------------------------------------------------------------------------------- /images/生产报工.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/生产报工.png -------------------------------------------------------------------------------- /images/生产排产.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/生产排产.png -------------------------------------------------------------------------------- /images/生产订单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/生产订单.png -------------------------------------------------------------------------------- /images/系统流程图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/images/系统流程图.jpg -------------------------------------------------------------------------------- /source-code/metaxk-pro/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/Jenkinsfile -------------------------------------------------------------------------------- /source-code/metaxk-pro/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/http-client.env.json -------------------------------------------------------------------------------- /source-code/metaxk-pro/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/lombok.config -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-dependencies/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-framework/metaxk-common/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-biz-dict/src/main/java/io/metaxk/framework/dict/core/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.framework.dict.core; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-biz-operatelog/src/main/java/io/metaxk/framework/operatelog/core/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework.operatelog.core; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-flowable/src/main/java/io/metaxk/framework/flowable/core/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework.flowable.core; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-flowable/src/main/java/io/metaxk/framework/flowable/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework.flowable; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-mq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-mq/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-mybatis/src/main/java/io/metaxk/framework/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-web/src/main/java/io/metaxk/framework/jackson/core/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework.jackson.core; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-web/src/main/java/io/metaxk/framework/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Web 框架,全局异常、API 日志等 3 | */ 4 | package io.metaxk.framework; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-web/src/main/java/io/metaxk/framework/web/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 针对 SpringMVC 的基础封装 3 | */ 4 | package io.metaxk.framework.web; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/metaxk-spring-boot-starter-websocket/src/main/java/io/metaxk/framework/websocket/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.framework.websocket; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-framework/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-api/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-api/src/main/java/io/metaxk/module/bpm/api/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * bpm API 包,定义暴露给其它模块的 API 3 | */ 4 | package io.metaxk.module.bpm.api; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/src/main/java/io/metaxk/module/bpm/api/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * bpm API 实现类,定义暴露给其它模块的 API 3 | */ 4 | package io.metaxk.module.bpm.api; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/src/main/java/io/metaxk/module/bpm/controller/app/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.bpm.controller.app; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/src/main/java/io/metaxk/module/bpm/convert/task/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.module.bpm.convert.task; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/metaxk-module-bpm-biz/src/main/java/io/metaxk/module/bpm/service/task/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.module.bpm.service.task; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-bpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-bpm/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-api/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/api/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.module.infra.api; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/controller/app/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.infra.controller.app; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/enums/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.infra.enums; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/mq/consumer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位符,避免缩进 3 | */ 4 | package io.metaxk.module.infra.mq.consumer; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/mq/message/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位符,避免缩进 3 | */ 4 | package io.metaxk.module.infra.mq.message; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/java/io/metaxk/module/infra/mq/producer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位符,避免缩进 3 | */ 4 | package io.metaxk.module.infra.mq.producer; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/main/resources/mapper/占位: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/test-integration/java/io/metaxk/module/infra/dal/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.infra.dal; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/metaxk-module-infra-biz/src/test-integration/java/io/metaxk/module/infra/service/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.infra.service; 5 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-infra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-infra/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-member/metaxk-module-member-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-member/metaxk-module-member-api/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-member/metaxk-module-member-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-member/metaxk-module-member-biz/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-member/metaxk-module-member-biz/src/main/java/io/metaxk/module/member/api/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.module.member.api; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-member/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-member/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-report/metaxk-module-report-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-report/metaxk-module-report-api/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-report/metaxk-module-report-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-report/metaxk-module-report-biz/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-report/metaxk-module-report-biz/src/test/resources/sql/clean.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "report_go_view_project"; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-report/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-system/metaxk-module-system-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-system/metaxk-module-system-api/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-system/metaxk-module-system-biz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-system/metaxk-module-system-biz/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-system/metaxk-module-system-biz/src/main/java/io/metaxk/module/system/job/package-info.java: -------------------------------------------------------------------------------- 1 | package io.metaxk.module.system.job; 2 | -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-module-system/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-module-system/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-server/Dockerfile -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-server/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-server/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-server/src/main/resources/application.yaml -------------------------------------------------------------------------------- /source-code/metaxk-pro/metaxk-server/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/metaxk-server/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/pom.xml -------------------------------------------------------------------------------- /source-code/metaxk-pro/新建模块说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/新建模块说明.md -------------------------------------------------------------------------------- /source-code/metaxk-pro/说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/metaxk-pro/说明.md -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.editorconfig -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.base -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.dev -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.front: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.front -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.github -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.prod -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.static -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.env.test -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.eslintignore -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.eslintrc-auto-import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.eslintrc-auto-import.json -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.eslintrc.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.gitignore -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.prettierignore -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.stylelintignore -------------------------------------------------------------------------------- /source-code/new_open_mes_front/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/.vscode/extensions.json -------------------------------------------------------------------------------- /source-code/new_open_mes_front/build/vite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/build/vite/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/build/vite/optimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/build/vite/optimize.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/index.html -------------------------------------------------------------------------------- /source-code/new_open_mes_front/package-原始.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/package-原始.json -------------------------------------------------------------------------------- /source-code/new_open_mes_front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/package.json -------------------------------------------------------------------------------- /source-code/new_open_mes_front/pnpm-lock-原始.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/pnpm-lock-原始.yaml -------------------------------------------------------------------------------- /source-code/new_open_mes_front/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/pnpm-lock.yaml -------------------------------------------------------------------------------- /source-code/new_open_mes_front/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/postcss.config.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/prettier.config.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/public/favicon.ico -------------------------------------------------------------------------------- /source-code/new_open_mes_front/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/public/logo.png -------------------------------------------------------------------------------- /source-code/new_open_mes_front/public/电信logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/public/电信logo.png -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/App.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/a_public_port/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/a_public_port/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/activity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/activity/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/definition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/definition/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/form/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/leave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/leave/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/model/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/processInstance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/processInstance/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/task/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/taskAssignRule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/taskAssignRule/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/bpm/userGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/bpm/userGroup/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/equipmentManage/storeStateType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/equipmentManage/storeStateType.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/facilityManage/ledger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/facilityManage/ledger.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/facilityManage/typeSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/facilityManage/typeSet.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/home/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/apiAccessLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/apiAccessLog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/apiErrorLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/apiErrorLog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/codegen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/codegen/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/codegen/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/codegen/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/config/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/dataSourceConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/dataSourceConfig/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/dbDoc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/dbDoc/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/fileConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/fileConfig/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/fileList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/fileList/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/job/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/job/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/jobLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/jobLog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/redis/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/infra/redis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/infra/redis/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/inspect/otherInspect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/inspect/otherInspect/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/login/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/login/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/login/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/clientManage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/clientManage/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/colorNum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/colorNum/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/craftCourse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/craftCourse/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/diskNum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/diskNum/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/materialManage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/materialManage/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/measureUnit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/measureUnit/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/model/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/processSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/processSet/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/specifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/specifications/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/supplierManage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/supplierManage/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/unitConversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/unitConversion/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/workShopSetUp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/workShopSetUp/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/masterData/workstation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/masterData/workstation/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/account/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/autoReply/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/autoReply/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/draft/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/freePublish/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/freePublish/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/material/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/material/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/menu/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/message/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/mpuser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/mpuser/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/statistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/statistics/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/mp/tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/mp/tag/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/noticeManage/Arrivalnotice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/noticeManage/Arrivalnotice/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/pay/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/pay/app/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/pay/channel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/pay/channel/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/pay/merchant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/pay/merchant/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/pay/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/pay/order/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/pay/refund/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/pay/refund/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/lastWorkHours.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/lastWorkHours.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/pmOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/pmOrder.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/production.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/reportWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/reportWork.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/reportWorkTwo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/reportWorkTwo.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/synchronize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/synchronize.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/task.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/workHours.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/workHours.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/prodMgmt/workHoursType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/prodMgmt/workHoursType.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/purchaseOrder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/purchaseOrder/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/purchaseReturn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/purchaseReturn/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/returnGoods/clientGoods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/returnGoods/clientGoods/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/salesOrder/articlePrice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/salesOrder/articlePrice/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/salesOrder/quotationList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/salesOrder/quotationList/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/salesOrder/quotationModel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/salesOrder/quotationModel/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/salesOrder/saleSheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/salesOrder/saleSheet/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/scheduling/classType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/scheduling/classType.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/scheduling/schedulingCalendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/scheduling/schedulingCalendar.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/scheduling/schedulingPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/scheduling/schedulingPlan.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/scheduling/shiftSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/scheduling/shiftSet.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/produceReceive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/produceReceive/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/produceStock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/produceStock/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/purchaseStock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/purchaseStock/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/purchaseWarehouse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/purchaseWarehouse/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/saleStock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/saleStock/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/salesOrderCount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/salesOrderCount/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stock/semiFinishedStock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stock/semiFinishedStock/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/stockCount/stockCountAll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/stockCount/stockCountAll/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/storeHouse/wareHouseArea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/storeHouse/wareHouseArea/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/storeHouse/wareHousePlace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/storeHouse/wareHousePlace/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/storeHouse/warehouseModel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/storeHouse/warehouseModel/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/dept/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/dept/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/dict/dict.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/dict/dict.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/dict/dict.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/dict/dict.type.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/dict/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/dict/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/errorCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/errorCode/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/loginLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/loginLog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/mail/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/mail/account/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/mail/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/mail/log/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/mail/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/mail/template/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/menu/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/notice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/notice/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/notify/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/notify/message/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/notify/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/notify/template/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/oauth2/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/oauth2/client.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/oauth2/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/oauth2/token.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/operatelog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/operatelog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/permission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/permission/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/post/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/role/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/sensitiveWord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/sensitiveWord/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/sms/smsChannel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/sms/smsChannel/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/sms/smsLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/sms/smsLog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/sms/smsTemplate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/sms/smsTemplate/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/tenant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/tenant/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/tenantPackage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/tenantPackage/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/user/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/user/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/user/profile.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/api/system/user/socialUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/api/system/user/socialUser.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/imgs/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/imgs/avatar.gif -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/imgs/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/imgs/avatar.jpg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/imgs/logo-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/imgs/logo-bg.png -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/imgs/logo.png -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/imgs/电信logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/imgs/电信logo.png -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/403.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/404.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/500.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/icon.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/login-bg.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/login-box-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/login-box-bg.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/message.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/money.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/peoples.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/assets/svgs/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/assets/svgs/shopping.svg -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/autocannon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/autocannon.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Backtop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Backtop/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Backtop/src/Backtop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Backtop/src/Backtop.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/CommonSearch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/CommonSearch/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/CommonTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/CommonTable/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/CommonTreeProduct/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/CommonTreeProduct/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/ConfigGlobal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/ConfigGlobal/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/ContentDetailWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/ContentDetailWrap/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/ContentWrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/ContentWrap/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/CountTo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/CountTo/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/CountTo/src/CountTo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/CountTo/src/CountTo.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Crontab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Crontab/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Crontab/src/Crontab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Crontab/src/Crontab.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Cropper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Cropper/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Cropper/src/CopperModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Cropper/src/CopperModal.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Cropper/src/Cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Cropper/src/Cropper.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Cropper/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Cropper/src/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Descriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Descriptions/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Dialog/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Dialog/src/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Dialog/src/Dialog.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/DictTag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/DictTag/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/DictTag/src/DictTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/DictTag/src/DictTag.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Echart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Echart/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Echart/src/Echart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Echart/src/Echart.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Editor/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Editor/src/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Editor/src/Editor.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Error/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Error/src/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Error/src/Error.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Form/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Form/src/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Form/src/Form.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Form/src/componentMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Form/src/componentMap.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Form/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Form/src/helper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Form/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Form/src/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Formwork-page/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Formwork-page/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Formwork-page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Formwork-page/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Highlight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Highlight/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Highlight/src/Highlight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Highlight/src/Highlight.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/IFrame/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/IFrame/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/IFrame/src/IFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/IFrame/src/IFrame.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Icon/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Icon/src/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Icon/src/Icon.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Icon/src/IconSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Icon/src/IconSelect.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Icon/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Icon/src/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/ImageViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/ImageViewer/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/ImageViewer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/ImageViewer/src/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Infotip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Infotip/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Infotip/src/Infotip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Infotip/src/Infotip.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/InputPassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/InputPassword/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Qrcode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Qrcode/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Qrcode/src/Qrcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Qrcode/src/Qrcode.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Search/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Search/src/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Search/src/Search.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Sticky/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Sticky/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Sticky/src/Sticky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Sticky/src/Sticky.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Table/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Table/src/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Table/src/Table.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Table/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Table/src/helper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Table/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Table/src/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/TableForm/BasicForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/TableForm/BasicForm.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/TableForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/TableForm/index.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Tooltip/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Tooltip/src/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Tooltip/src/Tooltip.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/UploadFile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/UploadFile/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/UploadFile/src/UploadImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/UploadFile/src/UploadImg.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Verifition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Verifition/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Verifition/src/Verify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Verifition/src/Verify.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Verifition/src/utils/ase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Verifition/src/utils/ase.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/Verifition/src/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/Verifition/src/utils/util.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XButton/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XButton/src/XButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XButton/src/XButton.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XButton/src/XTextButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XButton/src/XTextButton.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XModal/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XModal/src/XModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XModal/src/XModal.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/src/XTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/src/XTable.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/src/style/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/src/style/dark.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/src/style/index.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/src/style/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/src/style/light.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/XTable/src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/XTable/src/type.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/facilityTreeChoose/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/facilityTreeChoose/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/facilityTreeChoose/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/facilityTreeChoose/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/components/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/config/axios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/config/axios/config.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/config/axios/errorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/config/axios/errorCode.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/config/axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/config/axios/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/config/axios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/config/axios/service.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/directives/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/directives/permission/hasPermi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/directives/permission/hasPermi.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/directives/permission/hasRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/directives/permission/hasRole.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/event/useScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/event/useScrollTo.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useCache.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useConfigGlobal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useConfigGlobal.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useCrudSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useCrudSchemas.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useDesign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useDesign.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useEmitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useEmitt.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useForm.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useI18n.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useIcon.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useIntro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useIntro.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useLocale.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useMessage.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useNProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useNProgress.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/usePageLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/usePageLoading.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useTable.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useTimeAgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useTimeAgo.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useTitle.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useValidator.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useVxeCrudSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useVxeCrudSchemas.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useVxeGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useVxeGrid.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useWatermark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useWatermark.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/hooks/web/useXTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/hooks/web/useXTable.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/Layout.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/AppView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/AppView.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Breadcrumb/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Collapse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Collapse/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/ContextMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/ContextMenu/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Footer/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Footer/src/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Footer/src/Footer.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Logo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Logo/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Logo/src/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Logo/src/Logo.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Menu/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Menu/src/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Menu/src/Menu.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Menu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Menu/src/helper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Message/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Screenfull/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Screenfull/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/Setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/Setting/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/SizeDropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/SizeDropdown/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/TabMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/TabMenu/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/TabMenu/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/TabMenu/src/helper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/TagsView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/TagsView/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/ThemeSwitch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/ThemeSwitch/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/ToolHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/ToolHeader.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/UserInfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/UserInfo/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/layout/components/useRenderLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/layout/components/useRenderLayout.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/locales/en.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/main.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/permission.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/animate.css/index.ts: -------------------------------------------------------------------------------- 1 | import 'animate.css' 2 | -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/echarts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/echarts/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/elementPlus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/elementPlus/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/formCreate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/formCreate/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/svgIcon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/svgIcon/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vueI18n/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vueI18n/helper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vueI18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vueI18n/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/dict.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/dict.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/html.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/img.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/index.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/link.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/vxeTable/renderer/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/vxeTable/renderer/preview.tsx -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/plugins/windi.css/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/plugins/windi.css/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/router/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/router/modules/remaining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/router/modules/remaining.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/app.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/dict.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/locale.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/orderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/orderData.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/permission.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/tagsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/tagsView.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/store/modules/user.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/common.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/gantt_material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/gantt_material.css -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/global.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/global.module.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/index.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/var.css -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/variables.scss -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/styles/vxe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/styles/vxe.css -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/auto-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/auto-components.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/auto-imports.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/components.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/configGlobal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/configGlobal.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/contextMenu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/contextMenu.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/descriptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/descriptions.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/elementPlus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/elementPlus.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/form.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/form.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/icon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/icon.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/infoTip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/infoTip.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/layout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/layout.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/localeDropdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/localeDropdown.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/qrcode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/qrcode.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/table.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/table.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/types/theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/types/theme.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/Logger.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/auth.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/color.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/const.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/constants.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/dict.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/domUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/domUtils.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/download.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/env.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/filt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/filt.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/formCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/formCreate.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/formRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/formRules.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/formatTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/formatTime.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/is.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/jsencrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/jsencrypt.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/permission.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/propTypes.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/routerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/routerHelper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/tree.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/utils/tsxHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/utils/tsxHelper.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/definition/definition.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/definition/definition.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/definition/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/definition/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/form/form.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/form/form.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/form/formEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/form/formEditor.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/form/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/form/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/group/group.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/group/group.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/group/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/group/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/model/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/model/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/model/model.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/model/model.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/model/modelEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/model/modelEditor.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/oa/leave/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/oa/leave/create.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/oa/leave/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/oa/leave/detail.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/oa/leave/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/oa/leave/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/oa/leave/leave.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/oa/leave/leave.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/processInstance/create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/processInstance/create.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/processInstance/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/processInstance/detail.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/processInstance/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/processInstance/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/task/done/done.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/task/done/done.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/task/done/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/task/done/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/task/todo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/task/todo/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/task/todo/todo.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/task/todo/todo.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/bpm/taskAssignRule/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/bpm/taskAssignRule/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/error/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/error/403.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/error/404.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/error/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/error/500.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/facilityManage/ledger/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/facilityManage/ledger/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/facilityManage/ledger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/facilityManage/ledger/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/facilityManage/typeSet/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/facilityManage/typeSet/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/facilityManage/typeSet/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/facilityManage/typeSet/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/home/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/home/Index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/home/Index2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/home/Index2.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/home/echarts-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/home/echarts-data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/home/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/home/types.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/apiAccessLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/apiAccessLog/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/apiErrorLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/apiErrorLog/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/build/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/build/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/codegen/EditTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/codegen/EditTable.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/codegen/codegen.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/codegen/codegen.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/codegen/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/codegen/components/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/codegen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/codegen/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/config/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/config/form.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/config/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/dataSourceConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/dataSourceConfig/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/dbDoc/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/dbDoc/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/druid/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/druid/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/fileConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/fileConfig/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/fileList/fileList.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/fileList/fileList.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/fileList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/fileList/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/job/JobLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/job/JobLog.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/job/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/job/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/job/job.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/job/job.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/job/jobLog.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/job/jobLog.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/redis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/redis/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/server/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/server/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/skywalking/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/skywalking/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/swagger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/swagger/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/testDemo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/testDemo/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/infra/webSocket/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/infra/webSocket/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/inspect/otherInspection/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/inspect/otherInspection/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/inspect/otherInspection/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/inspect/otherInspection/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/ipadProduce/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/ipadProduce/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/Login.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/LoginForm.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/MobileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/MobileForm.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/QrCodeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/QrCodeForm.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/RegisterForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/RegisterForm.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/login/components/useLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/login/components/useLogin.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/clientManage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/clientManage/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/clientManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/clientManage/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/colorNum/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/colorNum/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/colorNum/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/colorNum/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/demoView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/demoView/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/diskNum/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/diskNum/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/diskNum/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/diskNum/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/materialManage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/materialManage/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/measureUnit/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/measureUnit/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/measureUnit/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/measureUnit/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/model/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/model/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/model/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/model/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/specifications/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/specifications/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/supplierManage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/supplierManage/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/unitConversion/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/unitConversion/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/masterData/workShopSetUp/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/masterData/workShopSetUp/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/account/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/account/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/autoReply/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/autoReply/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/draft/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/draft/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/freePublish/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/freePublish/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/material/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/material/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/menu/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/message/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/mpuser/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/mpuser/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/mp/statistics/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/mp/statistics/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/app/app.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/app/app.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/app/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/app/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/merchant/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/merchant/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/merchant/merchant.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/merchant/merchant.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/order/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/order/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/order/order.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/order/order.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/refund/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/refund/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/pay/refund/refund.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/pay/refund/refund.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/craftCourse/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/craftCourse/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/craftCourse/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/craftCourse/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/lastWorkHours/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/lastWorkHours/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/lastWorkHours/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/lastWorkHours/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/pmOrder/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/pmOrder/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/pmOrder/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/pmOrder/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/processSet/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/processSet/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/processSet/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/processSet/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/reportWork/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/reportWork/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/reportWork/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/reportWork/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/reportWorkTwo/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/reportWorkTwo/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/reportWorkTwo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/reportWorkTwo/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/synchronize/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/synchronize/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/synchronize/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/synchronize/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/task/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/task/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/task/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/task/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/workHours/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/workHours/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/workHours/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/workHours/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/workHoursType/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/workHoursType/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/prodMgmt/workHoursType/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/prodMgmt/workHoursType/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/Index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/components/BasicInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/components/BasicInfo.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/components/ResetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/components/ResetPwd.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/components/UserAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/components/UserAvatar.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/components/UserSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/components/UserSocial.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/profile/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/profile/components/index.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/purchaseOrder/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/purchaseOrder/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/purchaseOrder/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/purchaseOrder/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/purchaseReturn/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/purchaseReturn/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/purchaseReturn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/purchaseReturn/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/redirect/Redirect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/redirect/Redirect.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/report/goview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/report/goview/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/report/jmreport/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/report/jmreport/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/returnGoods/clientGoods/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/returnGoods/clientGoods/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/returnGoods/clientGoods/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/returnGoods/clientGoods/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/articlePrice/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/articlePrice/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/articlePrice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/articlePrice/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/quotationList/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/quotationList/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/quotationModel/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/quotationModel/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/saleSheet/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/saleSheet/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/salesOrder/saleSheet/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/salesOrder/saleSheet/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/scheduling/classType/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/scheduling/classType/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/scheduling/classType/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/scheduling/classType/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/scheduling/schedulingPlan/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/scheduling/schedulingPlan/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/scheduling/shiftSet/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/scheduling/shiftSet/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/scheduling/shiftSet/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/scheduling/shiftSet/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/produceReceive/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/produceReceive/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/produceReceive/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/produceReceive/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/produceStock/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/produceStock/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/produceStock/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/produceStock/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/purchaseStock/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/purchaseStock/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/purchaseStock/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/purchaseStock/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/purchaseWarehouse/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/purchaseWarehouse/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/purchaseWarehouse/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/purchaseWarehouse/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/saleStock/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/saleStock/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/saleStock/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/saleStock/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/saleStockCopy/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/saleStockCopy/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/saleStockCopy/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/saleStockCopy/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/semiFinishedStock/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/semiFinishedStock/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stock/semiFinishedStock/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stock/semiFinishedStock/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/stockCount/stockCountAll/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/stockCount/stockCountAll/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/storeHouse/wareHouseArea/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/storeHouse/wareHouseArea/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/storeHouse/wareHousePlace/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/storeHouse/wareHousePlace/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/storeHouse/warehouseModel/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/storeHouse/warehouseModel/data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/dept/dept.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/dept/dept.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/dept/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/dept/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/dict/dict.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/dict/dict.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/dict/dict.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/dict/dict.type.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/dict/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/dict/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/errorCode/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/errorCode/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/loginlog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/loginlog/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/loginlog/loginLog.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/loginlog/loginLog.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/mail/account/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/mail/account/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/mail/log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/mail/log/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/mail/log/log.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/mail/log/log.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/mail/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/mail/template/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/menu/menu.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/menu/menu.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notice/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notice/form.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notice/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notice/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notify/message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notify/message/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notify/my/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notify/my/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notify/my/my.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notify/my/my.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/notify/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/notify/template/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/oauth2/client/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/oauth2/client/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/oauth2/token/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/oauth2/token/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/oauth2/token/token.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/oauth2/token/token.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/operatelog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/operatelog/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/post/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/post/form.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/post/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/post/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/post/post.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/post/post.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/role/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/role/role.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/role/role.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/sensitiveWord/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/sensitiveWord/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/sms/smsChannel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/sms/smsChannel/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/sms/smsLog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/sms/smsLog/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/sms/smsLog/sms.log.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/sms/smsLog/sms.log.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/sms/smsTemplate/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/sms/smsTemplate/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/tenant/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/tenant/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/tenant/tenant.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/tenant/tenant.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/tenantPackage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/tenantPackage/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/user/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/system/user/user.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/system/user/user.data.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/src/views/workerReport/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/src/views/workerReport/index.vue -------------------------------------------------------------------------------- /source-code/new_open_mes_front/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/stylelint.config.js -------------------------------------------------------------------------------- /source-code/new_open_mes_front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/tsconfig.json -------------------------------------------------------------------------------- /source-code/new_open_mes_front/types/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/types/components.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/types/custom-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/types/custom-types.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/types/env.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/types/global.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/types/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/types/router.d.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/vite.config.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/windi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/windi.config.ts -------------------------------------------------------------------------------- /source-code/new_open_mes_front/代码运行说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_front/代码运行说明.md -------------------------------------------------------------------------------- /source-code/new_open_mes_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/README.md -------------------------------------------------------------------------------- /source-code/new_open_mes_server/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/http-client.env.json -------------------------------------------------------------------------------- /source-code/new_open_mes_server/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/lombok.config -------------------------------------------------------------------------------- /source-code/new_open_mes_server/metaxk-module-mes/metaxk-module-mes-api/src/main/java/io/metaxk/module/mes/api/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 占位 3 | */ 4 | package io.metaxk.module.mes.api; -------------------------------------------------------------------------------- /source-code/new_open_mes_server/metaxk-module-mes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/metaxk-module-mes/pom.xml -------------------------------------------------------------------------------- /source-code/new_open_mes_server/metaxk-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/metaxk-server/Dockerfile -------------------------------------------------------------------------------- /source-code/new_open_mes_server/metaxk-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/metaxk-server/pom.xml -------------------------------------------------------------------------------- /source-code/new_open_mes_server/metaxk-server/src/main/resources/META-INF/additional-spring-configuration-metadata.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-code/new_open_mes_server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/pom.xml -------------------------------------------------------------------------------- /source-code/new_open_mes_server/sql/mes-duiwai-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/sql/mes-duiwai-test.sql -------------------------------------------------------------------------------- /source-code/new_open_mes_server/新建模块说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/new_open_mes_server/新建模块说明.md -------------------------------------------------------------------------------- /source-code/源码运行说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/source-code/源码运行说明.md -------------------------------------------------------------------------------- /部署和文档/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/Dockerfile -------------------------------------------------------------------------------- /部署和文档/data/front/conf/my_server_block.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/conf/my_server_block.conf -------------------------------------------------------------------------------- /部署和文档/data/front/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/conf/nginx.conf -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/403-af24f6bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/403-af24f6bf.svg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/404-1759fece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/404-1759fece.svg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/500-8fda557c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/500-8fda557c.svg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/Dialog-a9e04816.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/Dialog-a9e04816.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/avatar-3e7710d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/avatar-3e7710d1.jpg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/avatar-ea67286d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/avatar-ea67286d.gif -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/constants-97c4dd5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/constants-97c4dd5f.js -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/create-474dcc2e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/create-474dcc2e.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/detail-c1c0c34e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/detail-c1c0c34e.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/echarts-data-fd9a42b0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/echarts-data-fd9a42b0.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/el-dropdown-item-0c6ddabc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/el-dropdown-item-0c6ddabc.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/el-space-417b6673.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/el-space-417b6673.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/en-043ceffb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/en-043ceffb.js -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/en-043ceffb.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/en-043ceffb.js.gz -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/fontawesome-webfont-2adefcbc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/fontawesome-webfont-2adefcbc.woff2 -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/fontawesome-webfont-7bfcab6d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/fontawesome-webfont-7bfcab6d.eot -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/fontawesome-webfont-aa58f33f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/fontawesome-webfont-aa58f33f.ttf -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/fontawesome-webfont-ba0c59de.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/fontawesome-webfont-ba0c59de.woff -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/fontawesome-webfont-fc378232.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/fontawesome-webfont-fc378232.svg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/formCreate-a3356cdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/formCreate-a3356cdc.js -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/index-ec0d3a37.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/index-ec0d3a37.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/login-bg-e36b8ca7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/login-bg-e36b8ca7.svg -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/logo-bg-1c41fdce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/logo-bg-1c41fdce.png -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/modelEditor-7b6aaaf0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/modelEditor-7b6aaaf0.css -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/useWatermark-bbe83b57.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/useWatermark-bbe83b57.js -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/zh-CN-f913543d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/zh-CN-f913543d.js -------------------------------------------------------------------------------- /部署和文档/data/front/dist/assets/zh-CN-f913543d.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/assets/zh-CN-f913543d.js.gz -------------------------------------------------------------------------------- /部署和文档/data/front/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/favicon.ico -------------------------------------------------------------------------------- /部署和文档/data/front/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/front/dist/index.html -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/buckets/.bloomcycle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/minio/data/.minio.sys/buckets/.bloomcycle.bin -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/buckets/.tracker.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/minio/data/.minio.sys/buckets/.tracker.bin -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/buckets/.usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/minio/data/.minio.sys/buckets/.usage.json -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/minio/data/.minio.sys/config/config.json -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/config/iam/format.json: -------------------------------------------------------------------------------- 1 | {"version":1} -------------------------------------------------------------------------------- /部署和文档/data/minio/data/.minio.sys/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/minio/data/.minio.sys/format.json -------------------------------------------------------------------------------- /部署和文档/data/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/data/sql/init.sql -------------------------------------------------------------------------------- /部署和文档/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/docker-compose.yml -------------------------------------------------------------------------------- /部署和文档/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/install.sh -------------------------------------------------------------------------------- /部署和文档/操作手册/万界星空mes管理人员操作手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaxk-company/free-mes/HEAD/部署和文档/操作手册/万界星空mes管理人员操作手册.pdf --------------------------------------------------------------------------------