拆分模块

This commit is contained in:
2025-09-03 20:56:44 +08:00
parent 08cc2c29a5
commit a2f5e4864b
939 changed files with 14227 additions and 9607 deletions

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.ecep.contract.manager.ds.other.controller.employee.EmployeeTabSkinLoginHistory">
<children>
<HBox spacing="3.0">
<children>
<TextField fx:id="searchKeyField" promptText="检索关键字"/>
<Button fx:id="searchBtn" mnemonicParsing="false" text="检索"/>
</children>
<padding>
<Insets bottom="10.0" left="7.0" right="10.0" top="10.0"/>
</padding>
</HBox>
<TableView fx:id="table" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0"
AnchorPane.topAnchor="42.0">
<columns>
<TableColumn fx:id="idColumn" prefWidth="60.0" text="ID"/>
<TableColumn fx:id="ipColumn" prefWidth="100.0" text="IP"/>
<TableColumn fx:id="macColumn" prefWidth="160.0" text="MAC"/>
<TableColumn fx:id="loginTimeColumn" prefWidth="150.0" text="登录时间"/>
<TableColumn fx:id="activeTimeColumn" prefWidth="150.0" text="激活时间" sortType="DESCENDING"/>
</columns>
</TableView>
</children>
</AnchorPane>