implements ISpOperService {
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/mes/src/main/java/com/wangziyang/mes/technology/vo/SpOperVo.java:
--------------------------------------------------------------------------------
1 | package com.wangziyang.mes.technology.vo;
2 |
3 | /**
4 | * 流程与工序穿梭数据展示对象
5 | *
6 | * @author wangziyang
7 | * @since 2020/03/16
8 | */
9 | public class SpOperVo {
10 | /**
11 | * 具体的存储的ID值
12 | */
13 | private String value;
14 | /**
15 | * 显示标题
16 | */
17 | private String title;
18 |
19 | /**
20 | * 获取 具体的存储的ID值
21 | *
22 | * @return value 具体的存储的ID值
23 | */
24 | public String getValue() {
25 | return this.value;
26 | }
27 |
28 | /**
29 | * 设置 具体的存储的ID值
30 | *
31 | * @param value 具体的存储的ID值
32 | */
33 | public void setValue(String value) {
34 | this.value = value;
35 | }
36 |
37 | /**
38 | * 获取 显示标题
39 | *
40 | * @return title 显示标题
41 | */
42 | public String getTitle() {
43 | return this.title;
44 | }
45 |
46 | /**
47 | * 设置 显示标题
48 | *
49 | * @param title 显示标题
50 | */
51 | public void setTitle(String title) {
52 | this.title = title;
53 | }
54 | }
55 |
--------------------------------------------------------------------------------
/mes/src/main/resources/application-pro.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | mvc:
3 | view:
4 | prefix: /templates/
5 | suffix: .ftl
6 | static-path-pattern: /static/**
7 | freemarker:
8 | suffix: .ftl
9 | templateEncoding: UTF-8
10 | templateLoaderPath: classpath:/templates/
11 | cache: true
12 | expose-spring-macro-helpers: false
13 | request-context-attribute: request
14 | settings:
15 | classic_compatible: true
16 | datasource:
17 | type: com.alibaba.druid.pool.DruidDataSource
18 | driver-class-name: com.mysql.cj.jdbc.Driver
19 | url: jdbc:mysql://192.168.52.76:3306/sparchetype?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong
20 | username: admin
21 | password: 123456
22 | druid:
23 | initial-size: 8
24 | min-idle: 5
25 | max-active: 10
26 | query-timeout: 6000
27 | transaction-query-timeout: 6000
28 | remove-abandoned-timeout: 1800
29 | filters: stat,config
30 |
31 | logging:
32 | level:
33 | root: info
34 | com.songpeng: info
--------------------------------------------------------------------------------
/mes/src/main/resources/application.yml:
--------------------------------------------------------------------------------
1 | server:
2 | session-timeout: 1800
3 | spring:
4 | profiles:
5 | active: dev
6 | cache:
7 | type: ehcache
8 | ehcache:
9 | config: classpath:config/ehcache.xml
10 |
11 | swagger:
12 | controller: com.wangziyang.mes
13 | description: MES接口管理
14 | enable: true
15 | license: wangziyang
16 | licenseUrl: https://gitee.com/wangziyangyang/MES-Sprongboot
17 | title: 王子杨的API 管理
18 | version: 1.0.0
--------------------------------------------------------------------------------
/mes/src/main/resources/banner.txt:
--------------------------------------------------------------------------------
1 | .__
2 | __ _ _______ ____ ____ ________|__| ___.__._____ ____ ____
3 | \ \/ \/ /\__ \ / \ / ___\\___ /| |< | |\__ \ / \ / ___\
4 | \ / / __ \_| | \/ /_/ >/ / | | \___ | / __ \_| | \/ /_/ >
5 | \/\_/ (____ /|___| /\___ //_____ \|__| / ____|(____ /|___| /\___ /
6 | \/ \//_____/ \/ \/ \/ \//_____/
7 |
--------------------------------------------------------------------------------
/mes/src/main/resources/ehcache.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/mes/src/main/resources/logback.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
10 |
11 |
12 |
13 |
14 |
15 | 192.168.137.95:5601
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/basedata/SpMaterileMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/basedata/common/SpSysDictMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/system/SysDictMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/system/SysIDepartmentMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/system/SysRoleMenuMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/system/SysUserRoleMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/technology/SpBomItemMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/mapper/technology/SpBomMapper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/css/admin.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/css/admin.css
--------------------------------------------------------------------------------
/mes/src/main/resources/static/css/client.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/css/client.css
--------------------------------------------------------------------------------
/mes/src/main/resources/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/favicon.ico
--------------------------------------------------------------------------------
/mes/src/main/resources/static/font/DS-DIGIT.TTF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/font/DS-DIGIT.TTF
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/bubble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/bubble.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/captcha.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/captcha.jpg
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/digitization.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/digitization.jpg
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/head_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/head_bg.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/hk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/hk.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/line.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/logo.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/image/sign.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/image/sign.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/js/layuimodule/config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * 宋鹏:layui 自定义组件配置
3 | */
4 | window.rootPath = (function (src) {
5 | src = document.scripts[document.scripts.length - 1].src;
6 | return src.substring(0, src.lastIndexOf("/") + 1);
7 | })();
8 |
9 | layui.config({
10 | base: rootPath,
11 | version: true
12 | }).extend({
13 | // layui扩展
14 | spLayui: "sp/spLayui",
15 | // 自定义layer扩展组件
16 | spLayer: 'sp/spLayer',
17 | // 自定义table扩展组件
18 | spTable: 'sp/spTable',
19 | // 自定义table扩展组件
20 | spSearchPanel: 'sp/spSearchPanel',
21 | // 大气风格的网络公司企业模版
22 | spCompany: 'sp/spCompany',
23 | // 分步表单扩展
24 | step: 'step-lay/step',
25 | //table树形扩展
26 | treeTable: 'treeTable/treeTable',
27 | // table选择扩展
28 | tableSelect: 'tableSelect/tableSelect',
29 | // fa图标选择扩展
30 | iconPickerFa: 'iconPicker/iconPickerFa',
31 | // wangEditor富文本扩展
32 | wangEditor: 'wangEditor/wangEditor'
33 | });
--------------------------------------------------------------------------------
/mes/src/main/resources/static/js/layuimodule/wangEditor/fonts/w-e-icon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/js/layuimodule/wangEditor/fonts/w-e-icon.woff
--------------------------------------------------------------------------------
/mes/src/main/resources/static/js/spConfig.js:
--------------------------------------------------------------------------------
1 | // 配置类
2 | var spConfig = {};
3 |
4 | // 逻辑删除字典:1 表示删除,0 表示未删除,2 表示禁用
5 | spConfig.isDeletedDict = {
6 | 0: '正常',
7 | 1: '删除',
8 | 2: '禁用'
9 | };
--------------------------------------------------------------------------------
/mes/src/main/resources/static/json/clear.json:
--------------------------------------------------------------------------------
1 | {
2 | "code": 1,
3 | "msg": "服务端清理缓存成功"
4 | }
--------------------------------------------------------------------------------
/mes/src/main/resources/static/json/tableSelect.json:
--------------------------------------------------------------------------------
1 | {
2 | "code": 0,
3 | "msg": "",
4 | "count": 16,
5 | "data": [
6 | { "id":"001", "username":"张玉林", "sex":"女" },
7 | { "id":"002", "username":"刘晓军", "sex":"男" },
8 | { "id":"003", "username":"张恒", "sex":"男" },
9 | { "id":"004", "username":"朱一", "sex":"男" },
10 | { "id":"005", "username":"刘佳能", "sex":"女" },
11 | { "id":"006", "username":"晓梅", "sex":"女" },
12 | { "id":"007", "username":"马冬梅", "sex":"女" },
13 | { "id":"008", "username":"刘晓庆", "sex":"女" },
14 | { "id":"009", "username":"刘晓庆", "sex":"女" },
15 | { "id":"010", "username":"刘晓庆", "sex":"女" },
16 | { "id":"011", "username":"刘晓庆", "sex":"女" },
17 | { "id":"012", "username":"刘晓庆", "sex":"女" },
18 | { "id":"013", "username":"刘晓庆", "sex":"女" },
19 | { "id":"014", "username":"刘晓庆", "sex":"女" },
20 | { "id":"015", "username":"刘晓庆", "sex":"女" },
21 | { "id":"016", "username":"刘晓庆", "sex":"女" }
22 | ]
23 | }
--------------------------------------------------------------------------------
/mes/src/main/resources/static/json/upload.json:
--------------------------------------------------------------------------------
1 | {
2 | "code": 1,
3 | "msg": "上传成功",
4 | "data": {
5 | "url": [
6 | "../images/logo.png",
7 | "../images/captcha.jpg"
8 | ]
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/HELP-US-OUT.txt:
--------------------------------------------------------------------------------
1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
3 | comprehensive icon sets or copy and paste your own.
4 |
5 | Please. Check it out.
6 |
7 | -Dave Gandy
8 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .@{fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .@{fa-css-prefix}-pull-left { float: left; }
11 | .@{fa-css-prefix}-pull-right { float: right; }
12 |
13 | .@{fa-css-prefix} {
14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .@{fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 | @import "screen-reader.less";
19 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/screen-reader.less:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { .sr-only(); }
5 | .sr-only-focusable { .sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/font-awesome-4.7.0/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | @import "screen-reader";
19 |
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/code.css:
--------------------------------------------------------------------------------
1 | /** layui-v2.5.6 MIT License By https://www.layui.com */
2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/layer/default/icon-ext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/css/modules/layer/default/icon-ext.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/layer/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/css/modules/layer/default/icon.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-0.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-1.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/css/modules/layer/default/loading-2.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/font/iconfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/font/iconfont.eot
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/font/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/font/iconfont.ttf
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/font/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/font/iconfont.woff
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/font/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/font/iconfont.woff2
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/0.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/1.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/10.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/11.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/12.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/13.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/13.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/14.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/15.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/16.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/17.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/18.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/19.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/2.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/20.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/21.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/21.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/22.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/23.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/23.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/24.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/25.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/25.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/26.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/26.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/27.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/27.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/28.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/28.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/29.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/29.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/3.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/30.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/30.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/31.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/31.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/32.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/33.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/34.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/34.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/35.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/35.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/36.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/37.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/37.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/38.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/38.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/39.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/39.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/4.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/40.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/41.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/41.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/42.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/42.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/43.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/43.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/44.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/44.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/45.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/45.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/46.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/46.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/47.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/47.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/48.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/49.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/49.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/5.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/50.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/51.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/51.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/52.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/52.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/53.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/53.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/54.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/54.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/55.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/55.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/56.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/56.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/57.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/57.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/58.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/58.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/59.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/59.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/6.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/60.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/60.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/61.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/61.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/62.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/62.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/63.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/63.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/64.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/64.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/65.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/65.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/66.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/66.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/67.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/67.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/68.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/68.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/69.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/69.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/7.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/7.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/70.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/70.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/71.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/71.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/8.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/8.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/lib/layui/images/face/9.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/lib/layui/images/face/9.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/picture/jt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/picture/jt.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/picture/lbx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/picture/lbx.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/picture/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/picture/loading.gif
--------------------------------------------------------------------------------
/mes/src/main/resources/static/picture/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/picture/map.png
--------------------------------------------------------------------------------
/mes/src/main/resources/static/picture/weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangziyang6/MES-SpringBoot/64e84cac6b4fa2f95f687422d97e2b820de3755f/mes/src/main/resources/static/picture/weather.png
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/admin/blog/index.ftl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Title
6 |
7 |
8 | blog index
9 |
10 |
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/codegenerator/mapper.java.ftl:
--------------------------------------------------------------------------------
1 | package ${package.Mapper};
2 |
3 | import ${package.Entity}.${entity};
4 | import ${superMapperClassPackage};
5 |
6 | /**
7 | *
8 | * ${table.comment!} Mapper 接口
9 | *
10 | *
11 | * @author ${author}
12 | * @since ${date}
13 | */
14 | <#if kotlin>
15 | interface ${table.mapperName} : ${superMapperClass}<${entity}>
16 | <#else>
17 | public interface ${table.mapperName} extends ${superMapperClass}<${entity}> {
18 |
19 | }
20 | #if>
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/codegenerator/service.java.ftl:
--------------------------------------------------------------------------------
1 | package ${package.Service};
2 |
3 | import ${package.Entity}.${entity};
4 | import ${superServiceClassPackage};
5 |
6 | /**
7 | *
8 | * ${table.comment!} 服务类
9 | *
10 | *
11 | * @author ${author}
12 | * @since ${date}
13 | */
14 | <#if kotlin>
15 | interface ${table.serviceName} : ${superServiceClass}<${entity}>
16 | <#else>
17 | public interface ${table.serviceName} extends ${superServiceClass}<${entity}> {
18 |
19 | }
20 | #if>
21 |
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/codegenerator/serviceImpl.java.ftl:
--------------------------------------------------------------------------------
1 | package ${package.ServiceImpl};
2 |
3 | import ${package.Entity}.${entity};
4 | import ${package.Mapper}.${table.mapperName};
5 | import ${package.Service}.${table.serviceName};
6 | import ${superServiceImplClassPackage};
7 | import org.springframework.stereotype.Service;
8 |
9 | /**
10 | *
11 | * ${table.comment!} 服务实现类
12 | *
13 | *
14 | * @author ${author}
15 | * @since ${date}
16 | */
17 | @Service
18 | <#if kotlin>
19 | open class ${table.serviceImplName} : ${superServiceImplClass}<${table.mapperName}, ${entity}>(), ${table.serviceName} {
20 |
21 | }
22 | <#else>
23 | public class ${table.serviceImplName} extends ${superServiceImplClass}<${table.mapperName}, ${entity}> implements ${table.serviceName} {
24 |
25 | }
26 | #if>
27 |
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/error/403.ftl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 后台管理系统
6 |
7 |
8 |
9 | <#include "${request.contextPath}/common/common.ftl">
10 |
11 |
12 |
17 |
18 |
--------------------------------------------------------------------------------
/mes/src/main/resources/templates/error/500.ftl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 欢迎页面-后台管理系统-1.0
6 |
7 |
8 |
9 | <#include "${request.contextPath}/common/common.ftl">
10 |
11 |
12 |
17 |
18 |
--------------------------------------------------------------------------------
/mes/src/test/java/com/wangziyang/mes/SparchetypeApplicationTests.java:
--------------------------------------------------------------------------------
1 | package com.wangziyang.mes;
2 |
3 | import org.junit.Test;
4 | import org.junit.runner.RunWith;
5 | import org.springframework.boot.test.context.SpringBootTest;
6 | import org.springframework.test.context.junit4.SpringRunner;
7 |
8 | @RunWith(SpringRunner.class)
9 | @SpringBootTest
10 | public class SparchetypeApplicationTests {
11 |
12 | @Test
13 | public void contextLoads() {
14 | }
15 |
16 | }
17 |
--------------------------------------------------------------------------------