New energy charging system based on springboot+vue+mysql - front-end and back-end separation (includes source code + report + deployment tutorial)

The new energy charging system management system is divided into administrators and users according to the operating subjects. The administrator's functions include feedback management, customer service chat management, charging pile management, charging pile reservation management, dictionary management, new energy announcement management, user management, administrator management, etc., and can manage repair reports. User functions include management departments and department position information, management charging pile information, training information, salary information, etc. The system uses Mysql database, Java language, Spring Boot framework and other technologies for programming implementation.

Due to space limitations, if you want to get the complete article or source code, or do it on your behalf, scroll to the bottom of the article to see your personal VX. 

Administrator function structure chart:

In the charging pile management interface, the administrator can review all the data displayed in the interface, view the charging pile status of the charging pile information, and add new charging pile information, etc.

The administrator adds a new repair report in the repair report management interface and sets the role of the repair report, and can delete the repair report.

 Charging pile interface:

The attributes of the entity are used to represent the field names. The data types and values ​​represented by different fields are different, and whether each field of the table can remain empty will be explained. After the structure of a data table is designed, when saving, You also need to name it. Try to choose an English name for naming and saving, so as not to easily cause system errors. Next, a brief explanation of the designed table will be given.

feedback form

serial number

List

type of data

illustrate

Allow empty

1

Id

Int

id

no

2

yonghu_id

Integer

user

yes

3

chongdianzhuang_id

Integer

Charging pile

yes

4

baoxui_name

String

Repair report name

yes

5

baoxui_photo

String

Repair pictures

yes

6

baoxui_types

Integer

Repair type

yes

7

insert_time

Date

Application feedback time

yes

8

baoxui_zhuangtai_types

Integer

Repair status

yes

9

baoxui_content

String

Repair report details

yes

10

create_time

Date

creation time

yes

Customer service chat form

serial number

List

type of data

illustrate

Allow empty

1

Id

Int

id

no

2

yonghu_id

Integer

Ask user

yes

3

chat_issue

String

question

yes

4

issue_time

Date

question time

yes

5

chat_reply

String

reply

yes

6

reply_time

Date

Response Time

yes

7

zhuangtai_types

Integer

state

yes

8

chat_types

Integer

type of data

yes

9

insert_time

Date

creation time

yes

Charging pile table

serial number

List

type of data

illustrate

Allow empty

1

Id

Int

id

no

2

chongdianzhuang_name

String

Charging pile name

yes

3

chongdianzhuang_uuid_number

String

Charging pile number

yes

4

chongdianzhuang_photo

String

Charging pile photos

yes

5

chongdianzhuang_types

Integer

Charging pile type

yes

6

chongdianzhuang_zhuangtai_types

Integer

Charging pile status

yes

7

chongdianzhuang_kucun_number

Integer

Charging time

yes

8

chongdianzhuang_new_money

BigDecimal

Amount/hour

yes

9

chongdianzhuang_content

String

Charging pile introduction

yes

10

shangxia_types

Integer

Is it on the shelves

yes

11

chongdianzhuang_delete

Integer

Tombstone

yes

12

insert_time

Date

Entry Time

yes

13

create_time

Date

creation time

yes

Charging pile reservation form

serial number

List

type of data

illustrate

Allow empty

1

Id

Int

id

no

2

chongdianzhuang_id

Integer

Charging pile

yes

3

yonghu_id

Integer

user

yes

4

buy_number

Integer

Charging hours

yes

5

chongdianzhuang_order_time

Date

Appointment

yes

6

chongdianzhuang_order_true_price

BigDecimal

actual price paid

yes

7

chongdianzhuang_order_types

Integer

Order Type

yes

8

insert_time

Date

Order creation time

yes

9

create_time

Date

creation time

yes

Guess you like

Origin blog.csdn.net/xiejiachao/article/details/132757802