实例介绍
我只是看到csdn上有人传不完整的代码,然后引导去淘宝店里购买的行为不齿而整理本文档。目录顶层的readMe.txt是经过我改写,可以帮助用源码学习或者直接使用的人一次run成功。资源分设置为1分,如果看到不是1分请私信。
【实例截图】
【核心代码】
IE-MES
└── IE-MES
├── pom.xml
├── README.md
├── readMe.txt
└── src
├── main
│ ├── java
│ │ ├── com
│ │ │ └── iemes
│ │ │ ├── annotation
│ │ │ │ ├── SystemLog.java
│ │ │ │ └── TableSeg.java
│ │ │ ├── controller
│ │ │ │ ├── base
│ │ │ │ │ ├── baseExtController.java
│ │ │ │ │ ├── BaseResponse.java
│ │ │ │ │ └── ConstantController.java
│ │ │ │ ├── index
│ │ │ │ │ ├── BackgroundController.java
│ │ │ │ │ ├── BaseController.java
│ │ │ │ │ └── InitController.java
│ │ │ │ ├── inventory
│ │ │ │ │ └── WorkshopInventoryController.java
│ │ │ │ ├── kanban
│ │ │ │ │ └── KanbanController.java
│ │ │ │ ├── plan
│ │ │ │ │ ├── DeliverNumberController.java
│ │ │ │ │ ├── ErpOrderController.java
│ │ │ │ │ ├── ShoporderMaintenanceController.java
│ │ │ │ │ └── ShoporderMakeController.java
│ │ │ │ ├── popup
│ │ │ │ │ └── PopupTableController.java
│ │ │ │ ├── produce
│ │ │ │ │ ├── AssemblePodController.java
│ │ │ │ │ ├── EquipmentTestingPodController.java
│ │ │ │ │ ├── PackagePodController.java
│ │ │ │ │ ├── PodButtonController.java
│ │ │ │ │ ├── PodFunctionController.java
│ │ │ │ │ ├── RepairPodController.java
│ │ │ │ │ ├── SamplingPodController.java
│ │ │ │ │ ├── SfcStepController.java
│ │ │ │ │ └── VisualInspectionPodController.java
│ │ │ │ ├── qc
│ │ │ │ │ ├── NcCodeController.java
│ │ │ │ │ ├── NcCodeGroupController.java
│ │ │ │ │ └── NcHandleController.java
│ │ │ │ ├── report
│ │ │ │ │ ├── CapacityReportController.java
│ │ │ │ │ └── ReportController.java
│ │ │ │ ├── system
│ │ │ │ │ ├── HelperController.java
│ │ │ │ │ ├── LogController.java
│ │ │ │ │ ├── MessageUploadController.java
│ │ │ │ │ ├── ResourcesController.java
│ │ │ │ │ ├── RoleController.java
│ │ │ │ │ ├── UserController.java
│ │ │ │ │ └── UserLoginController.java
│ │ │ │ ├── teaching
│ │ │ │ │ └── pointGradeController.java
│ │ │ │ ├── test
│ │ │ │ │ ├── JayceController.java
│ │ │ │ │ └── SukeyController.java
│ │ │ │ └── workshop
│ │ │ │ ├── BomController.java
│ │ │ │ ├── ItemController.java
│ │ │ │ ├── OperationController.java
│ │ │ │ ├── OperationResourceController.java
│ │ │ │ ├── RoutingController.java
│ │ │ │ ├── SiteController.java
│ │ │ │ └── WorkcenterController.java
│ │ │ ├── entity
│ │ │ │ ├── BaseExtFormMap.java
│ │ │ │ ├── BomFormMap.java
│ │ │ │ ├── ButtomFormMap.java
│ │ │ │ ├── ExamInfoFormMap.java
│ │ │ │ ├── GradeCalculateFormMap.java
│ │ │ │ ├── ItemBomFormMap.java
│ │ │ │ ├── ItemFormMap.java
│ │ │ │ ├── JayceFormMap.java
│ │ │ │ ├── LogFormMap.java
│ │ │ │ ├── NcCodeFormMap.java
│ │ │ │ ├── NcCodeGroupFormMap.java
│ │ │ │ ├── NcCodeGroupRelFormMap.java
│ │ │ │ ├── NcRepairFormMap.java
│ │ │ │ ├── OperationFormMap.java
│ │ │ │ ├── OperationPodFormMap.java
│ │ │ │ ├── OperationResourceFormMap.java
│ │ │ │ ├── Params.java
│ │ │ │ ├── PodButtonFormMap.java
│ │ │ │ ├── PodFunctionFormMap.java
│ │ │ │ ├── PointGradeFormMap.java
│ │ │ │ ├── ResFormMap.java
│ │ │ │ ├── ResRoleFormMap.java
│ │ │ │ ├── RoleFormMap.java
│ │ │ │ ├── RoleResFormMap.java
│ │ │ │ ├── RoutingFormMap.java
│ │ │ │ ├── RoutingStepFormMap.java
│ │ │ │ ├── ServerInfoFormMap.java
│ │ │ │ ├── SfcAssemblyFormMap.java
│ │ │ │ ├── SfcNcFormMap.java
│ │ │ │ ├── SfcStepFormMap.java
│ │ │ │ ├── ShopOrderFormMap.java
│ │ │ │ ├── ShopOrderSfcFormMap.java
│ │ │ │ ├── SiteFormMap.java
│ │ │ │ ├── SukeyFormMap.java
│ │ │ │ ├── UserFormMap.java
│ │ │ │ ├── UserGroupsFormMap.java
│ │ │ │ ├── UserLoginFormMap.java
│ │ │ │ ├── WorkCenterFormMap.java
│ │ │ │ ├── WorkCenterRelationFormMap.java
│ │ │ │ └── WorkshopInventoryFormMap.java
│ │ │ ├── exception
│ │ │ │ ├── MyExceptionHandler.java
│ │ │ │ ├── ParameterException.java
│ │ │ │ └── SystemException.java
│ │ │ ├── logAop
│ │ │ │ └── LogAopAction.java
│ │ │ ├── mapper
│ │ │ │ ├── base
│ │ │ │ │ └── BaseMapper.java
│ │ │ │ ├── BaseExtMapper.java
│ │ │ │ ├── jayce
│ │ │ │ │ └── JayceMapper.java
│ │ │ │ ├── KanbanMapper.java
│ │ │ │ ├── LogMapper.java
│ │ │ │ ├── operation
│ │ │ │ │ └── OperationMapper.java
│ │ │ │ ├── PlanMapper.java
│ │ │ │ ├── pod
│ │ │ │ │ ├── PodButtonMapper.java
│ │ │ │ │ └── PodFunctionMapper.java
│ │ │ │ ├── ProduceMapper.java
│ │ │ │ ├── ReportMapper.java
│ │ │ │ ├── ResourcesMapper.java
│ │ │ │ ├── RoleMapper.java
│ │ │ │ ├── routing
│ │ │ │ │ ├── RoutingMapper.java
│ │ │ │ │ └── RoutingStepMapper.java
│ │ │ │ ├── ServerInfoMapper.java
│ │ │ │ ├── site
│ │ │ │ │ └── SiteMapper.java
│ │ │ │ ├── sukey
│ │ │ │ │ └── SukeyMapper.java
│ │ │ │ ├── teaching
│ │ │ │ │ ├── ExamInfoMapper.java
│ │ │ │ │ └── PointGradeMapper.java
│ │ │ │ ├── UserLoginMapper.java
│ │ │ │ ├── UserMapper.java
│ │ │ │ └── WorkShopMapper.java
│ │ │ ├── plugin
│ │ │ │ ├── PagePlugin.java
│ │ │ │ ├── PageView.java
│ │ │ │ ├── ReflectHelper.java
│ │ │ │ └── SQLServer2008Dialect.java
│ │ │ ├── score
│ │ │ │ └── GradeCalculateService.java
│ │ │ ├── service
│ │ │ │ ├── AssemblePodService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AssemblePodServiceImpl.java
│ │ │ │ │ ├── NcHandleServiceImpl.java
│ │ │ │ │ └── ShopOrderLssuedServiceImpl.java
│ │ │ │ ├── NcHandleService.java
│ │ │ │ └── ShopOrderLssuedService.java
│ │ │ ├── shiro
│ │ │ │ ├── ChainDefinitionSectionMetaSource.java
│ │ │ │ ├── credentials
│ │ │ │ │ └── RetryLimitHashedCredentialsMatcher.java
│ │ │ │ ├── filter
│ │ │ │ │ ├── KickoutSessionControlFilter.java
│ │ │ │ │ └── SysUserFilter.java
│ │ │ │ ├── MyRealm.java
│ │ │ │ └── spring
│ │ │ │ └── SpringCacheManagerWrapper.java
│ │ │ ├── task
│ │ │ │ └── SpringTaskController.java
│ │ │ ├── upload
│ │ │ │ ├── ScaleImage.java
│ │ │ │ └── UploadUtil.java
│ │ │ └── util
│ │ │ ├── BackMsg.java
│ │ │ ├── ClassUtil.java
│ │ │ ├── Common.java
│ │ │ ├── ConfigUtils.java
│ │ │ ├── DateUtils.java
│ │ │ ├── DownloadUtils.java
│ │ │ ├── EhcacheUtils.java
│ │ │ ├── EmailUtils.java
│ │ │ ├── ExcelDataMapper.java
│ │ │ ├── ExcelHeader.java
│ │ │ ├── ExcelUtil.java
│ │ │ ├── FormMap.java
│ │ │ ├── JsonDateSerializer.java
│ │ │ ├── JsonUtils.java
│ │ │ ├── ListUtils.java
│ │ │ ├── NumberGenerate.java
│ │ │ ├── PasswordHelper.java
│ │ │ ├── POIUtils.java
│ │ │ ├── PropertiesUtils.java
│ │ │ ├── RandomUitls.java
│ │ │ ├── ResponseHelp.java
│ │ │ ├── ShiroSecurityHelper.java
│ │ │ ├── SpringMVCDateConverter.java
│ │ │ ├── SystemInfo.java
│ │ │ ├── TreeObject.java
│ │ │ ├── TreeUtil.java
│ │ │ └── UnicodeUtils.java
│ │ └── org
│ │ └── apache
│ │ └── ibatis
│ │ ├── annotations
│ │ │ ├── Arg.java
│ │ │ ├── CacheNamespace.java
│ │ │ ├── CacheNamespaceRef.java
│ │ │ ├── Case.java
│ │ │ ├── ConstructorArgs.java
│ │ │ ├── Delete.java
│ │ │ ├── DeleteProvider.java
│ │ │ ├── Insert.java
│ │ │ ├── InsertProvider.java
│ │ │ ├── Lang.java
│ │ │ ├── Many.java
│ │ │ ├── MapKey.java
│ │ │ ├── One.java
│ │ │ ├── Options.java
│ │ │ ├── package-info.java
│ │ │ ├── Param.java
│ │ │ ├── Result.java
│ │ │ ├── ResultMap.java
│ │ │ ├── Results.java
│ │ │ ├── ResultType.java
│ │ │ ├── Select.java
│ │ │ ├── SelectKey.java
│ │ │ ├── SelectProvider.java
│ │ │ ├── TypeDiscriminator.java
│ │ │ ├── Update.java
│ │ │ └── UpdateProvider.java
│ │ ├── binding
│ │ │ ├── BindingException.java
│ │ │ ├── MapperMethod.java
│ │ │ ├── MapperProxyFactory.java
│ │ │ ├── MapperProxy.java
│ │ │ ├── MapperRegistry.java
│ │ │ └── package-info.java
│ │ ├── builder
│ │ │ ├── annotation
│ │ │ │ ├── MapperAnnotationBuilder.java
│ │ │ │ ├── MethodResolver.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── ProviderSqlSource.java
│ │ │ ├── BaseBuilder.java
│ │ │ ├── BuilderException.java
│ │ │ ├── CacheRefResolver.java
│ │ │ ├── IncompleteElementException.java
│ │ │ ├── MapperBuilderAssistant.java
│ │ │ ├── package-info.java
│ │ │ ├── ParameterExpression.java
│ │ │ ├── ResultMapResolver.java
│ │ │ ├── SqlSourceBuilder.java
│ │ │ ├── StaticSqlSource.java
│ │ │ └── xml
│ │ │ ├── mybatis-3-config.dtd
│ │ │ ├── mybatis-3-mapper.dtd
│ │ │ ├── package-info.java
│ │ │ ├── XMLConfigBuilder.java
│ │ │ ├── XMLIncludeTransformer.java
│ │ │ ├── XMLMapperBuilder.java
│ │ │ ├── XMLMapperEntityResolver.java
│ │ │ └── XMLStatementBuilder.java
│ │ ├── datasource
│ │ │ ├── DataSourceException.java
│ │ │ ├── DataSourceFactory.java
│ │ │ ├── jndi
│ │ │ │ ├── JndiDataSourceFactory.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ ├── pooled
│ │ │ │ ├── package-info.java
│ │ │ │ ├── PooledConnection.java
│ │ │ │ ├── PooledDataSourceFactory.java
│ │ │ │ ├── PooledDataSource.java
│ │ │ │ └── PoolState.java
│ │ │ └── unpooled
│ │ │ ├── package-info.java
│ │ │ ├── UnpooledDataSourceFactory.java
│ │ │ └── UnpooledDataSource.java
│ │ ├── executor
│ │ │ ├── keygen
│ │ │ │ ├── Jdbc3KeyGenerator.java
│ │ │ │ ├── KeyGenerator.java
│ │ │ │ ├── NoKeyGenerator.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── SelectKeyGenerator.java
│ │ │ ├── parameter
│ │ │ │ ├── package-info.java
│ │ │ │ └── ParameterHandler.java
│ │ │ ├── result
│ │ │ │ ├── DefaultMapResultHandler.java
│ │ │ │ ├── DefaultResultContext.java
│ │ │ │ ├── DefaultResultHandler.java
│ │ │ │ └── package-info.java
│ │ │ ├── resultset
│ │ │ │ ├── DefaultResultSetHandler.java
│ │ │ │ ├── package-info.java
│ │ │ │ ├── ResultSetHandler.java
│ │ │ │ └── ResultSetWrapper.java
│ │ │ └── statement
│ │ │ ├── BaseStatementHandler.java
│ │ │ ├── CallableStatementHandler.java
│ │ │ ├── package-info.java
│ │ │ ├── PreparedStatementHandler.java
│ │ │ ├── RoutingStatementHandler.java
│ │ │ ├── SimpleStatementHandler.java
│ │ │ └── StatementHandler.java
│ │ ├── io
│ │ │ ├── ClassLoaderWrapper.java
│ │ │ ├── DefaultVFS.java
│ │ │ ├── ExternalResources.java
│ │ │ ├── JBoss6VFS.java
│ │ │ ├── package-info.java
│ │ │ ├── ResolverUtil.java
│ │ │ ├── Resources.java
│ │ │ └── VFS.java
│ │ ├── jdbc
│ │ │ ├── AbstractSQL.java
│ │ │ ├── Null.java
│ │ │ ├── package-info.java
│ │ │ ├── RuntimeSqlException.java
│ │ │ ├── ScriptRunner.java
│ │ │ ├── SelectBuilder.java
│ │ │ ├── SqlBuilder.java
│ │ │ ├── SQL.java
│ │ │ └── SqlRunner.java
│ │ ├── mapping
│ │ │ ├── BoundSql.java
│ │ │ ├── CacheBuilder.java
│ │ │ ├── DatabaseIdProvider.java
│ │ │ ├── DefaultDatabaseIdProvider.java
│ │ │ ├── Discriminator.java
│ │ │ ├── Environment.java
│ │ │ ├── FetchType.java
│ │ │ ├── MappedStatement.java
│ │ │ ├── package-info.java
│ │ │ ├── ParameterMap.java
│ │ │ ├── ParameterMapping.java
│ │ │ ├── ParameterMode.java
│ │ │ ├── ResultFlag.java
│ │ │ ├── ResultMap.java
│ │ │ ├── ResultMapping.java
│ │ │ ├── ResultSetType.java
│ │ │ ├── SqlCommandType.java
│ │ │ ├── SqlSource.java
│ │ │ ├── StatementType.java
│ │ │ └── VendorDatabaseIdProvider.java
│ │ ├── package-info.java
│ │ ├── parsing
│ │ │ ├── GenericTokenParser.java
│ │ │ ├── package-info.java
│ │ │ ├── ParsingException.java
│ │ │ ├── PropertyParser.java
│ │ │ ├── TokenHandler.java
│ │ │ ├── XNode.java
│ │ │ └── XPathParser.java
│ │ ├── plugin
│ │ │ ├── InterceptorChain.java
│ │ │ ├── Interceptor.java
│ │ │ ├── Intercepts.java
│ │ │ ├── Invocation.java
│ │ │ ├── package-info.java
│ │ │ ├── PluginException.java
│ │ │ ├── Plugin.java
│ │ │ └── Signature.java
│ │ ├── reflection
│ │ │ ├── ExceptionUtil.java
│ │ │ ├── factory
│ │ │ │ ├── DefaultObjectFactory.java
│ │ │ │ ├── ObjectFactory.java
│ │ │ │ └── package-info.java
│ │ │ ├── invoker
│ │ │ │ ├── GetFieldInvoker.java
│ │ │ │ ├── Invoker.java
│ │ │ │ ├── MethodInvoker.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── SetFieldInvoker.java
│ │ │ ├── MetaClass.java
│ │ │ ├── MetaObject.java
│ │ │ ├── package-info.java
│ │ │ ├── property
│ │ │ │ ├── package-info.java
│ │ │ │ ├── PropertyCopier.java
│ │ │ │ ├── PropertyNamer.java
│ │ │ │ └── PropertyTokenizer.java
│ │ │ ├── ReflectionException.java
│ │ │ ├── Reflector.java
│ │ │ ├── SystemMetaObject.java
│ │ │ └── wrapper
│ │ │ ├── BaseWrapper.java
│ │ │ ├── BeanWrapper.java
│ │ │ ├── CollectionWrapper.java
│ │ │ ├── DefaultObjectWrapperFactory.java
│ │ │ ├── MapWrapper.java
│ │ │ ├── ObjectWrapperFactory.java
│ │ │ ├── ObjectWrapper.java
│ │ │ └── package-info.java
│ │ ├── session
│ │ │ ├── AutoMappingBehavior.java
│ │ │ ├── Configuration.java
│ │ │ ├── defaults
│ │ │ │ ├── DefaultSqlSessionFactory.java
│ │ │ │ ├── DefaultSqlSession.java
│ │ │ │ └── package-info.java
│ │ │ ├── ExecutorType.java
│ │ │ ├── LocalCacheScope.java
│ │ │ ├── package-info.java
│ │ │ ├── ResultContext.java
│ │ │ ├── ResultHandler.java
│ │ │ ├── RowBounds.java
│ │ │ ├── SqlSessionException.java
│ │ │ ├── SqlSessionFactoryBuilder.java
│ │ │ ├── SqlSessionFactory.java
│ │ │ ├── SqlSession.java
│ │ │ ├── SqlSessionManager.java
│ │ │ └── TransactionIsolationLevel.java
│ │ ├── transaction
│ │ │ ├── jdbc
│ │ │ │ ├── JdbcTransactionFactory.java
│ │ │ │ ├── JdbcTransaction.java
│ │ │ │ └── package-info.java
│ │ │ ├── managed
│ │ │ │ ├── ManagedTransactionFactory.java
│ │ │ │ ├── ManagedTransaction.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ ├── TransactionException.java
│ │ │ ├── TransactionFactory.java
│ │ │ └── Transaction.java
│ │ └── type
│ │ ├── Alias.java
│ │ ├── ArrayTypeHandler.java
│ │ ├── BaseTypeHandler.java
│ │ ├── BigDecimalTypeHandler.java
│ │ ├── BigIntegerTypeHandler.java
│ │ ├── BlobByteObjectArrayTypeHandler.java
│ │ ├── BlobTypeHandler.java
│ │ ├── BooleanTypeHandler.java
│ │ ├── ByteArrayTypeHandler.java
│ │ ├── ByteArrayUtils.java
│ │ ├── ByteObjectArrayTypeHandler.java
│ │ ├── ByteTypeHandler.java
│ │ ├── CharacterTypeHandler.java
│ │ ├── ClobTypeHandler.java
│ │ ├── DateOnlyTypeHandler.java
│ │ ├── DateTypeHandler.java
│ │ ├── DoubleTypeHandler.java
│ │ ├── EnumOrdinalTypeHandler.java
│ │ ├── EnumTypeHandler.java
│ │ ├── FloatTypeHandler.java
│ │ ├── IntegerTypeHandler.java
│ │ ├── JdbcType.java
│ │ ├── LongTypeHandler.java
│ │ ├── MappedJdbcTypes.java
│ │ ├── MappedTypes.java
│ │ ├── NClobTypeHandler.java
│ │ ├── NStringTypeHandler.java
│ │ ├── ObjectTypeHandler.java
│ │ ├── package-info.java
│ │ ├── ShortTypeHandler.java
│ │ ├── SimpleTypeRegistry.java
│ │ ├── SqlDateTypeHandler.java
│ │ ├── SqlTimestampTypeHandler.java
│ │ ├── SqlTimeTypeHandler.java
│ │ ├── StringTypeHandler.java
│ │ ├── TimeOnlyTypeHandler.java
│ │ ├── TypeAliasRegistry.java
│ │ ├── TypeException.java
│ │ ├── TypeHandler.java
│ │ ├── TypeHandlerRegistry.java
│ │ ├── TypeReference.java
│ │ └── UnknownTypeHandler.java
│ ├── resources
│ │ ├── 161204213142.psc
│ │ ├── 161206224924.psc
│ │ ├── 161211033509.psc
│ │ ├── config.properties
│ │ ├── ehcache.xml
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── mappings
│ │ │ ├── baseExt-mapper.xml
│ │ │ ├── base-mapper.xml
│ │ │ ├── kanban-mapper.xml
│ │ │ ├── log-mapper.xml
│ │ │ ├── operation-mapper.xml
│ │ │ ├── plan-mapper.xml
│ │ │ ├── produce-mapper.xml
│ │ │ ├── report-mapper.xml
│ │ │ ├── resources-mapper.xml
│ │ │ ├── role-mapper.xml
│ │ │ ├── user-mapper.xml
│ │ │ └── workshop-mapper.xml
│ │ ├── spring-application.xml
│ │ ├── spring-mvc-shiro.xml
│ │ ├── spring-mvc.xml
│ │ ├── spring-shiro.xml
│ │ └── 表说明.txt
│ └── webapp
│ ├── 404
│ │ ├── 1.gif
│ │ ├── 2.gif
│ │ ├── 3.gif
│ │ ├── 404.jsp
│ │ ├── 4.gif
│ │ ├── 5.gif
│ │ ├── 6.gif
│ │ ├── center_error.gif
│ │ ├── error_r1_c1.gif
│ │ ├── error_r2_c1.gif
│ │ ├── error_r2_c3.gif
│ │ ├── error_r3_c2.gif
│ │ ├── gao.gif
│ │ ├── left.gif
│ │ └── right.gif
│ ├── admin_files
│ │ ├── 22.png
│ │ ├── 9.jpg
│ │ ├── account_1.png
│ │ ├── awesome.css
│ │ ├── bg.jpg
│ │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff
│ │ ├── css.css
│ │ ├── EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff
│ │ ├── hun.jpg
│ │ ├── intro-bg.jpg
│ │ ├── k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff
│ │ ├── lock_1.png
│ │ ├── login.css
│ │ ├── logo_left.png
│ │ ├── min.css
│ │ ├── site.png
│ │ └── temp.jpeg
│ ├── bootstrap-daterangepicker-master
│ │ ├── bower.json
│ │ ├── daterangepicker.css
│ │ ├── daterangepicker.js
│ │ ├── daterangepicker.scss
│ │ ├── demo.html
│ │ ├── drp.png
│ │ ├── example
│ │ │ ├── amd
│ │ │ │ ├── index.html
│ │ │ │ ├── main.js
│ │ │ │ └── require.js
│ │ │ └── browserify
│ │ │ ├── bundle.js
│ │ │ ├── index.html
│ │ │ ├── main.js
│ │ │ └── README.md
│ │ ├── moment.js
│ │ ├── moment.min.js
│ │ ├── package.js
│ │ ├── package.json
│ │ ├── README.md
│ │ └── website
│ │ ├── index.html
│ │ ├── website.css
│ │ └── website.js
│ ├── center.jsp
│ ├── common
│ │ ├── common.js
│ │ ├── common.jspf
│ │ └── lyGrid.js
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── iemes_report.css
│ │ ├── landing-page.css
│ │ ├── lanyuan.css
│ │ └── login.css
│ ├── dbscript
│ │ └── iemes_v1.sql
│ ├── denied.jsp
│ ├── echarts
│ │ ├── chart
│ │ │ ├── bar.js
│ │ │ ├── base.js
│ │ │ ├── chord.js
│ │ │ ├── eventRiver.js
│ │ │ ├── force.js
│ │ │ ├── funnel.js
│ │ │ ├── gauge.js
│ │ │ ├── island.js
│ │ │ ├── k.js
│ │ │ ├── line.js
│ │ │ ├── map.js
│ │ │ ├── pie.js
│ │ │ ├── radar.js
│ │ │ └── scatter.js
│ │ ├── chart.js
│ │ ├── component
│ │ │ ├── axis.js
│ │ │ ├── base.js
│ │ │ ├── categoryAxis.js
│ │ │ ├── dataRange.js
│ │ │ ├── dataView.js
│ │ │ ├── dataZoom.js
│ │ │ ├── grid.js
│ │ │ ├── legend.js
│ │ │ ├── polar.js
│ │ │ ├── roamController.js
│ │ │ ├── timeline.js
│ │ │ ├── title.js
│ │ │ ├── toolbox.js
│ │ │ ├── tooltip.js
│ │ │ └── valueAxis.js
│ │ ├── component.js
│ │ ├── config.js
│ │ ├── data
│ │ │ ├── Graph.js
│ │ │ ├── KDTree.js
│ │ │ ├── quickSelect.js
│ │ │ └── Tree.js
│ │ ├── echarts-all.js
│ │ ├── echarts.js
│ │ ├── esl
│ │ │ ├── css.js
│ │ │ ├── esl.js
│ │ │ └── js.js
│ │ ├── layout
│ │ │ ├── Chord.js
│ │ │ ├── EdgeBundling.js
│ │ │ ├── eventRiver.js
│ │ │ ├── Force.js
│ │ │ ├── forceLayoutWorker.js
│ │ │ └── Tree.js
│ │ ├── theme
│ │ │ ├── default.js
│ │ │ ├── infographic.js
│ │ │ └── macarons.js
│ │ └── util
│ │ ├── accMath.js
│ │ ├── coordinates.js
│ │ ├── date.js
│ │ ├── ecAnimation.js
│ │ ├── ecData.js
│ │ ├── ecEffect.js
│ │ ├── ecQuery.js
│ │ ├── kwargs.js
│ │ ├── mapData
│ │ │ ├── geoCoord.js
│ │ │ ├── geoJson
│ │ │ │ ├── an_hui_geo.js
│ │ │ │ ├── ao_men_geo.js
│ │ │ │ ├── bei_jing_geo.js
│ │ │ │ ├── china_geo.js
│ │ │ │ ├── chong_qing_geo.js
│ │ │ │ ├── fu_jian_geo.js
│ │ │ │ ├── gan_su_geo.js
│ │ │ │ ├── guang_dong_geo.js
│ │ │ │ ├── guang_xi_geo.js
│ │ │ │ ├── gui_zhou_geo.js
│ │ │ │ ├── hai_nan_geo.js
│ │ │ │ ├── he_bei_geo.js
│ │ │ │ ├── hei_long_jiang_geo.js
│ │ │ │ ├── he_nan_geo.js
│ │ │ │ ├── hu_bei_geo.js
│ │ │ │ ├── hu_nan_geo.js
│ │ │ │ ├── jiang_su_geo.js
│ │ │ │ ├── jiang_xi_geo.js
│ │ │ │ ├── ji_lin_geo.js
│ │ │ │ ├── liao_ning_geo.js
│ │ │ │ ├── nei_meng_gu_geo.js
│ │ │ │ ├── ning_xia_geo.js
│ │ │ │ ├── qing_hai_geo.js
│ │ │ │ ├── shan_dong_geo.js
│ │ │ │ ├── shang_hai_geo.js
│ │ │ │ ├── shan_xi_1_geo.js
│ │ │ │ ├── shan_xi_2_geo.js
│ │ │ │ ├── si_chuan_geo.js
│ │ │ │ ├── tai_wan_geo.js
│ │ │ │ ├── tian_jin_geo.js
│ │ │ │ ├── world_geo.js
│ │ │ │ ├── xiang_gang_geo.js
│ │ │ │ ├── xin_jiang_geo.js
│ │ │ │ ├── xi_zang_geo.js
│ │ │ │ ├── yun_nan_geo.js
│ │ │ │ └── zhe_jiang_geo.js
│ │ │ ├── params.js
│ │ │ ├── rawData
│ │ │ │ ├── encode.js
│ │ │ │ └── geoJson
│ │ │ │ ├── an_hui_geo.json
│ │ │ │ ├── ao_men_geo.json
│ │ │ │ ├── bei_jing_geo.json
│ │ │ │ ├── china_city.json
│ │ │ │ ├── china_geo.json
│ │ │ │ ├── chong_qing_geo.json
│ │ │ │ ├── fu_jian_geo.json
│ │ │ │ ├── gan_su_geo.json
│ │ │ │ ├── guang_dong_geo.json
│ │ │ │ ├── guang_xi_geo.json
│ │ │ │ ├── gui_zhou_geo.json
│ │ │ │ ├── hai_nan_geo.json
│ │ │ │ ├── he_bei_geo.json
│ │ │ │ ├── hei_long_jiang_geo.json
│ │ │ │ ├── he_nan_geo.json
│ │ │ │ ├── hu_bei_geo.json
│ │ │ │ ├── hu_nan_geo.json
│ │ │ │ ├── jiang_su_geo.json
│ │ │ │ ├── jiang_xi_geo.json
│ │ │ │ ├── ji_lin_geo.json
│ │ │ │ ├── liao_ning_geo.json
│ │ │ │ ├── nei_meng_gu_geo.json
│ │ │ │ ├── ning_xia_geo.json
│ │ │ │ ├── qing_hai_geo.json
│ │ │ │ ├── shan_dong_geo.json
│ │ │ │ ├── shang_hai_geo.json
│ │ │ │ ├── shan_xi_1_geo.json
│ │ │ │ ├── shan_xi_2_geo.json
│ │ │ │ ├── si_chuan_geo.json
│ │ │ │ ├── tai_wan_geo.json
│ │ │ │ ├── tian_jin_geo.json
│ │ │ │ ├── world_geo.json
│ │ │ │ ├── xiang_gang_geo.json
│ │ │ │ ├── xin_jiang_geo.json
│ │ │ │ ├── xi_zang_geo.json
│ │ │ │ ├── yun_nan_geo.json
│ │ │ │ └── zhe_jiang_geo.json
│ │ │ └── textFixed.js
│ │ ├── ndarray.js
│ │ ├── number.js
│ │ ├── projection
│ │ │ ├── albers.js
│ │ │ ├── mercator.js
│ │ │ ├── normal.js
│ │ │ └── svg.js
│ │ ├── shape
│ │ │ ├── Candle.js
│ │ │ ├── Chain.js
│ │ │ ├── Cross.js
│ │ │ ├── GaugePointer.js
│ │ │ ├── HalfSmoothPolygon.js
│ │ │ ├── HandlePolygon.js
│ │ │ ├── Icon.js
│ │ │ ├── MarkLine.js
│ │ │ ├── normalIsCover.js
│ │ │ ├── Ribbon.js
│ │ │ └── Symbol.js
│ │ └── smartSteps.js
│ ├── error.jsp
│ ├── fonts
│ │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff
│ │ ├── EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff
│ │ └── opensans
│ │ ├── opensans-bold-webfont.woff
│ │ ├── opensans-light-webfont.woff
│ │ └── opensans-webfont.woff
│ ├── help.files
│ │ ├── image001.jpg
│ │ ├── image002.jpg
│ │ ├── image003.jpg
│ │ ├── image004.jpg
│ │ ├── image005.jpg
│ │ ├── image006.jpg
│ │ ├── image007.jpg
│ │ ├── image008.jpg
│ │ ├── image009.jpg
│ │ ├── image010.jpg
│ │ ├── image011.jpg
│ │ ├── image012.jpg
│ │ ├── image013.jpg
│ │ ├── image014.jpg
│ │ ├── image015.jpg
│ │ ├── image016.jpg
│ │ ├── image017.jpg
│ │ ├── image018.jpg
│ │ ├── image019.jpg
│ │ ├── image020.jpg
│ │ ├── image021.jpg
│ │ ├── image022.jpg
│ │ ├── image023.jpg
│ │ ├── image024.jpg
│ │ ├── image025.jpg
│ │ ├── image026.jpg
│ │ ├── image027.jpg
│ │ ├── image028.jpg
│ │ ├── image029.jpg
│ │ ├── image030.jpg
│ │ ├── image031.jpg
│ │ ├── image032.jpg
│ │ ├── image033.jpg
│ │ ├── image034.jpg
│ │ ├── image035.jpg
│ │ ├── image036.jpg
│ │ ├── image037.jpg
│ │ ├── image038.jpg
│ │ ├── image039.jpg
│ │ └── image040.jpg
│ ├── images
│ │ ├── custom.png
│ │ ├── dp.png
│ │ ├── gotop.gif
│ │ ├── gotop.png
│ │ ├── icon_browse.gif
│ │ ├── intro.jpg
│ │ ├── loading.gif
│ │ ├── tree
│ │ │ ├── base.gif
│ │ │ ├── cd.gif
│ │ │ ├── empty.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── globe.gif
│ │ │ ├── imgfolder.gif
│ │ │ ├── joinbottom.gif
│ │ │ ├── join.gif
│ │ │ ├── line.gif
│ │ │ ├── minusbottom.gif
│ │ │ ├── minus.gif
│ │ │ ├── minustop.gif
│ │ │ ├── musicfolder.gif
│ │ │ ├── nolines_minus.gif
│ │ │ ├── nolines_plus.gif
│ │ │ ├── page.gif
│ │ │ ├── plusbottom.gif
│ │ │ ├── plus.gif
│ │ │ ├── plustop.gif
│ │ │ ├── question.gif
│ │ │ └── trash.gif
│ │ ├── up.png
│ │ └── zhifubao.png
│ ├── index.jsp
│ ├── js
│ │ ├── base
│ │ │ └── public_operwindows.js
│ │ ├── date
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.js
│ │ │ ├── daterangepicker-bs2.css
│ │ │ ├── daterangepicker-bs3.css
│ │ │ ├── daterangepicker.js
│ │ │ ├── font-awesome.min.css
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── index.html
│ │ │ ├── jquery-1.8.3.min.js
│ │ │ ├── moment.js
│ │ │ └── moment.min.js
│ │ ├── echarts
│ │ │ ├── bmap.min.js
│ │ │ ├── china.js
│ │ │ ├── dataTool.min.js
│ │ │ ├── echarts-all-3.js
│ │ │ └── world.js
│ │ ├── fonts
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── opensans
│ │ │ ├── opensans-bold-webfont.woff
│ │ │ ├── opensans-light-webfont.woff
│ │ │ └── opensans-webfont.woff
│ │ ├── item_resource
│ │ │ ├── bom
│ │ │ │ ├── bom_add.js
│ │ │ │ ├── bom_edit.js
│ │ │ │ ├── bom_list.js
│ │ │ │ └── bom_pop.js
│ │ │ └── item
│ │ │ ├── item_add.js
│ │ │ ├── item_child_pop.js
│ │ │ ├── item_edit.js
│ │ │ ├── item_list.js
│ │ │ ├── item_main_pop.js
│ │ │ └── item_pop.js
│ │ ├── jquery
│ │ │ ├── ie
│ │ │ │ ├── html5shiv.js
│ │ │ │ └── respond.min.js
│ │ │ ├── jquery-1.8.3.js
│ │ │ ├── jquery.form.js
│ │ │ ├── jquery-validation
│ │ │ │ ├── jquery.metadata.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── messages_cn.js
│ │ │ │ └── version.txt
│ │ │ ├── underscore.js
│ │ │ └── Validform_v5.3.2_min.js
│ │ ├── layer-v1.9.2
│ │ │ ├── layer
│ │ │ │ ├── extend
│ │ │ │ │ └── layer.ext.js
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ ├── close.png
│ │ │ │ ├── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── default.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── layer.ext.css
│ │ │ │ └── style.css
│ │ │ └── 更新日志.txt
│ │ ├── popup
│ │ │ ├── assemble_sfclist.js
│ │ │ ├── shoporder_Issued.js
│ │ │ └── unfinish_workcenter_list.js
│ │ ├── production_process
│ │ │ ├── pod_button
│ │ │ │ ├── pod_button_add.js
│ │ │ │ ├── pod_button_edit.js
│ │ │ │ └── pod_button_list.js
│ │ │ ├── pod_function
│ │ │ │ ├── pod_function_add.js
│ │ │ │ ├── pod_function_edit.js
│ │ │ │ └── pod_function_list.js
│ │ │ └── pod_panel
│ │ │ ├── assemble_item.js
│ │ │ ├── assemble_nc_code.js
│ │ │ ├── assemble_pod.js
│ │ │ ├── assemble_pod_list.js
│ │ │ └── assemble_start.js
│ │ ├── product_plan
│ │ │ └── shoporder_maintenance
│ │ │ ├── shoporder_maintenance_add.js
│ │ │ └── shoporder_maintenance_list.js
│ │ ├── qc
│ │ │ ├── nc
│ │ │ │ ├── nc_add.js
│ │ │ │ ├── nc_edit.js
│ │ │ │ └── nc_list.js
│ │ │ ├── nc_group
│ │ │ │ ├── nc_group_add.js
│ │ │ │ ├── nc_group_edit.js
│ │ │ │ └── nc_group_list.js
│ │ │ ├── nc_handle_info.js
│ │ │ └── nc_handle.js
│ │ ├── report
│ │ │ ├── forward_tracing.js
│ │ │ ├── forward_tracing_list.js
│ │ │ ├── productionRecord_report
│ │ │ │ ├── productionRecord_control.js
│ │ │ │ ├── productionRecord_list.js
│ │ │ │ ├── productionRecord_sfc_assembly_list.js
│ │ │ │ ├── productionRecord_sfc_list.js
│ │ │ │ └── productionRecord_sfc_nc_list.js
│ │ │ ├── sfc_assembly_info_trace
│ │ │ │ ├── sfc_assembly_info_list.js
│ │ │ │ └── sfc_assembly_info_query.js
│ │ │ └── sfc_list.js
│ │ ├── scrolltopcontrol.js
│ │ ├── system
│ │ │ ├── kanban
│ │ │ │ └── material_consumption_list.js
│ │ │ ├── log
│ │ │ │ └── list.js
│ │ │ ├── resources
│ │ │ │ ├── add.js
│ │ │ │ ├── edit.js
│ │ │ │ └── list.js
│ │ │ ├── role
│ │ │ │ ├── add.js
│ │ │ │ ├── edit.js
│ │ │ │ └── list.js
│ │ │ ├── user
│ │ │ │ ├── add.js
│ │ │ │ ├── edit.js
│ │ │ │ ├── list.js
│ │ │ │ └── updatePassword.js
│ │ │ └── userlogin
│ │ │ └── list.js
│ │ ├── teaching_test
│ │ │ ├── pointGrade_list.js
│ │ │ └── student_grade_list.js
│ │ ├── test
│ │ │ ├── jayce
│ │ │ │ ├── jayce_add.js
│ │ │ │ ├── jayce_edit.js
│ │ │ │ └── jayce_list.js
│ │ │ └── sukey
│ │ │ ├── sukey_add.js
│ │ │ ├── sukey_edit.js
│ │ │ └── sukey_list.js
│ │ ├── welcome.js
│ │ ├── workshopdata
│ │ │ ├── operation
│ │ │ │ ├── operation_add.js
│ │ │ │ ├── operation_edit.js
│ │ │ │ └── operation_list.js
│ │ │ ├── operation_resource
│ │ │ │ ├── operation_resource_add.js
│ │ │ │ ├── operation_resource_edit.js
│ │ │ │ └── operation_resource_list.js
│ │ │ ├── routing
│ │ │ │ ├── routing_add.js
│ │ │ │ ├── routing_edit.js
│ │ │ │ ├── routing_list.js
│ │ │ │ └── routing_pop.js
│ │ │ ├── site
│ │ │ │ ├── site_add.js
│ │ │ │ ├── site_edit.js
│ │ │ │ └── site_list.js
│ │ │ └── workcenter
│ │ │ ├── workcenter_add.js
│ │ │ ├── workcenter_child_pop.js
│ │ │ ├── workcenter_edit.js
│ │ │ ├── workcenter_line_pop.js
│ │ │ ├── workcenter_list.js
│ │ │ └── workcenter_pop.js
│ │ └── workshop_inventory
│ │ ├── add.js
│ │ └── list.js
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ ├── icon.png
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 2.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 3.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 4.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 5.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 6.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ ├── dest
│ │ │ │ └── layui.all.js
│ │ │ └── modules
│ │ │ ├── code.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ └── layui.js
│ ├── login.jsp
│ ├── notebook
│ │ ├── fonts
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── opensans
│ │ │ ├── opensans-bold-webfont.woff
│ │ │ ├── opensans-light-webfont.woff
│ │ │ └── opensans-webfont.woff
│ │ └── notebook_files
│ │ ├── app.plugin.js
│ │ ├── app.v1.css
│ │ ├── app.v1.js
│ │ ├── avatar_default.jpg
│ │ ├── avatar.jpg
│ │ ├── bootstrap_calendar.css
│ │ ├── bootstrap_calendar.js
│ │ ├── bootstrap.css
│ │ ├── bootstrap-filestyle.min.js
│ │ ├── font.css
│ │ ├── jquery.easy-pie-chart.js
│ │ ├── jquery.flot.grow.js
│ │ ├── jquery.flot.min.js
│ │ ├── jquery.flot.resize.js
│ │ ├── jquery.flot.tooltip.min.js
│ │ ├── jquery.sortable.js
│ │ └── jquery.sparkline.min.js
│ ├── process_designer
│ │ ├── default.css
│ │ ├── gooFlow
│ │ │ ├── codebase
│ │ │ │ ├── GooFlow2.css
│ │ │ │ ├── GooFlow.css
│ │ │ │ ├── GooFlow.js
│ │ │ │ └── img
│ │ │ │ ├── gooflow_bg.png
│ │ │ │ ├── gooflow_blank2.gif
│ │ │ │ ├── gooflow_blank2.htm
│ │ │ │ ├── gooflow_blank.gif
│ │ │ │ ├── gooflow_btn_bg.png
│ │ │ │ ├── gooflow_bullet.png
│ │ │ │ ├── gooflow_icon2.png
│ │ │ │ ├── gooflow_icon.png
│ │ │ │ ├── GooFlow_line_oper.png
│ │ │ │ └── gooflow_tip.png
│ │ │ ├── routing_add.html
│ │ │ ├── routing_edit.html
│ │ │ └── 设计器API说明书.doc
│ │ ├── GooFunc.js
│ │ ├── jquery.min.js
│ │ └── json2.js
│ ├── uploadFile
│ │ ├── masterData.xlsx
│ │ ├── pic-default.png
│ │ └── userInfo.xlsx
│ ├── WEB-INF
│ │ ├── jsp
│ │ │ ├── exception
│ │ │ │ ├── error.jsp
│ │ │ │ ├── error-parameter.jsp
│ │ │ │ └── error-system.jsp
│ │ │ ├── item_resource
│ │ │ │ ├── bom
│ │ │ │ │ ├── bom_add.jsp
│ │ │ │ │ ├── bom_edit.jsp
│ │ │ │ │ └── bom_list.jsp
│ │ │ │ └── item
│ │ │ │ ├── item_add.jsp
│ │ │ │ ├── item_edit.jsp
│ │ │ │ └── item_list.jsp
│ │ │ ├── product_plan
│ │ │ │ ├── shoporder_Issued
│ │ │ │ │ └── shoporder_Issued.jsp
│ │ │ │ └── shoporder_maintenance
│ │ │ │ ├── shoporder_maintenance_add.jsp
│ │ │ │ └── shoporder_maintenance_list.jsp
│ │ │ ├── public
│ │ │ │ ├── assemble_sfclist.jsp
│ │ │ │ ├── bom_list.jsp
│ │ │ │ ├── exam_list2.jsp
│ │ │ │ ├── item_child_list.jsp
│ │ │ │ ├── item_list.jsp
│ │ │ │ ├── item_main_list.jsp
│ │ │ │ ├── nc_code_list.jsp
│ │ │ │ ├── nc_group_list.jsp
│ │ │ │ ├── operation_list2.jsp
│ │ │ │ ├── operation_list.jsp
│ │ │ │ ├── podfunction_list.jsp
│ │ │ │ ├── resource_list.jsp
│ │ │ │ ├── route_list.jsp
│ │ │ │ ├── sfc_list.jsp
│ │ │ │ ├── site_list.jsp
│ │ │ │ ├── unfinish_workshop_list.jsp
│ │ │ │ ├── workcenter_child_list.jsp
│ │ │ │ ├── workcenterLine_list.jsp
│ │ │ │ ├── workcenter_list.jsp
│ │ │ │ └── workorder_list.jsp
│ │ │ ├── qc
│ │ │ │ ├── nc
│ │ │ │ │ ├── nc_add.jsp
│ │ │ │ │ ├── nc_edit.jsp
│ │ │ │ │ └── nc_list.jsp
│ │ │ │ ├── nc_group
│ │ │ │ │ ├── nc_group_add.jsp
│ │ │ │ │ ├── nc_group_edit.jsp
│ │ │ │ │ └── nc_group_list.jsp
│ │ │ │ ├── nc_handle_info.jsp
│ │ │ │ └── nc_handle.jsp
│ │ │ ├── report
│ │ │ │ ├── capacity_report
│ │ │ │ │ └── capacity_bar.jsp
│ │ │ │ ├── forward_tracing_report
│ │ │ │ │ ├── forward_tracing_bar.jsp
│ │ │ │ │ └── forward_tracing_list.jsp
│ │ │ │ ├── inventoryReport.jsp
│ │ │ │ ├── productionRecord_report
│ │ │ │ │ ├── productionRecord_bar.jsp
│ │ │ │ │ ├── productionRecord_list.jsp
│ │ │ │ │ ├── productionRecord_sfc_assembly_list.jsp
│ │ │ │ │ ├── productionRecord_sfc_list.jsp
│ │ │ │ │ └── productionRecord_sfc_nc_list.jsp
│ │ │ │ ├── reverseTracingReport.jsp
│ │ │ │ ├── schedulerReport.jsp
│ │ │ │ ├── sfc_assembly_info_trace
│ │ │ │ │ ├── sfc_assemblyInfo_list.jsp
│ │ │ │ │ └── sfc_assemblyInfo_query.jsp
│ │ │ │ ├── sfc_list.jsp
│ │ │ │ └── unqualifiedReport.jsp
│ │ │ ├── system
│ │ │ │ ├── help
│ │ │ │ │ └── introduce.jsp
│ │ │ │ ├── kanban
│ │ │ │ │ └── material_consumption_list.jsp
│ │ │ │ ├── log
│ │ │ │ │ └── list.jsp
│ │ │ │ ├── messageUpload
│ │ │ │ │ ├── mainUpload.jsp
│ │ │ │ │ └── upload.jsp
│ │ │ │ ├── produce
│ │ │ │ │ ├── assemble_item.jsp
│ │ │ │ │ ├── assemble_item_list.jsp
│ │ │ │ │ ├── assemble_pod.jsp
│ │ │ │ │ ├── assemble_start.jsp
│ │ │ │ │ ├── pod_nccode
│ │ │ │ │ │ └── record_nccode.jsp
│ │ │ │ │ └── process
│ │ │ │ │ ├── podbutton_add.jsp
│ │ │ │ │ ├── podbutton_edit.jsp
│ │ │ │ │ ├── podbutton_list.jsp
│ │ │ │ │ ├── podfunction_add.jsp
│ │ │ │ │ ├── podfunction_edit.jsp
│ │ │ │ │ └── podfunction_list.jsp
│ │ │ │ ├── resources
│ │ │ │ │ ├── add.jsp
│ │ │ │ │ ├── edit.jsp
│ │ │ │ │ ├── list.jsp
│ │ │ │ │ └── permissions.jsp
│ │ │ │ ├── role
│ │ │ │ │ ├── add.jsp
│ │ │ │ │ ├── edit.jsp
│ │ │ │ │ └── list.jsp
│ │ │ │ ├── user
│ │ │ │ │ ├── add.jsp
│ │ │ │ │ ├── edit.jsp
│ │ │ │ │ ├── list.jsp
│ │ │ │ │ ├── roleSelect.jsp
│ │ │ │ │ └── updatePassword.jsp
│ │ │ │ └── userlogin
│ │ │ │ └── list.jsp
│ │ │ ├── teaching_score
│ │ │ │ ├── exam_list.jsp
│ │ │ │ ├── pointGrade_list.jsp
│ │ │ │ └── student_grade_list.jsp
│ │ │ ├── test
│ │ │ │ ├── echarts
│ │ │ │ │ └── echarts_test.jsp
│ │ │ │ ├── jayce
│ │ │ │ │ ├── jayce_add.jsp
│ │ │ │ │ ├── jayce_edit.jsp
│ │ │ │ │ └── jayce_list.jsp
│ │ │ │ └── sukey
│ │ │ │ ├── sukey_add.jsp
│ │ │ │ ├── sukey_edit.jsp
│ │ │ │ └── sukey_list.jsp
│ │ │ ├── web
│ │ │ │ └── readme.txt
│ │ │ ├── workshopdata
│ │ │ │ ├── operation
│ │ │ │ │ ├── operation_add.jsp
│ │ │ │ │ ├── operation_edit.jsp
│ │ │ │ │ ├── operation_list.jsp
│ │ │ │ │ └── pod_button_select.jsp
│ │ │ │ ├── operation_resource
│ │ │ │ │ ├── operation_resource_add.jsp
│ │ │ │ │ ├── operation_resource_edit.jsp
│ │ │ │ │ └── operation_resource_list.jsp
│ │ │ │ ├── process_route
│ │ │ │ │ ├── routing_add.jsp
│ │ │ │ │ ├── routing_edit.jsp
│ │ │ │ │ └── routing_list.jsp
│ │ │ │ ├── site
│ │ │ │ │ ├── site_add.jsp
│ │ │ │ │ ├── site_edit.jsp
│ │ │ │ │ └── site_list.jsp
│ │ │ │ └── workcenter
│ │ │ │ ├── workcenter_add.jsp
│ │ │ │ ├── workcenter_edit.jsp
│ │ │ │ └── workcenter_list.jsp
│ │ │ └── workshop_inventory
│ │ │ ├── add.jsp
│ │ │ └── list.jsp
│ │ ├── lib
│ │ │ ├── libsigar-ia64-hpux-11.sl
│ │ │ ├── libsigar-pa-hpux-11.sl
│ │ │ ├── libsigar-universal64-macosx.dylib
│ │ │ ├── libsigar-universal-macosx.dylib
│ │ │ ├── sigar-amd64-winnt.dll
│ │ │ ├── sigar-x86-winnt.dll
│ │ │ └── sigar-x86-winnt.lib
│ │ └── web.xml
│ ├── welcome2.jsp
│ └── welcome.jsp
└── test
└── java
└── readme.txt
225 directories, 1139 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论