├── .idea ├── .gitignore ├── DepthInspection.iml ├── modules.xml └── vcs.xml ├── Algorithm └── BinaryFind.go ├── InspectionItem ├── configurationParameter.go ├── databaseOperatingEnvironment.go ├── databaseProperty.go └── databaseSecurity.go ├── LICENSE ├── README.md ├── ResultOutput └── PDF │ ├── OutPdf.go │ ├── ResultDateProcessing.go │ ├── tableFormatModule.go │ └── tatilModule.go ├── api ├── PublicClass │ ├── DBPublicDateInterface.go │ └── Global.go ├── ResultInfoOutInterface.go ├── Stream │ ├── CalculatedPercentage.go │ ├── dateTypeToConversion.go │ └── operation.go └── loggs │ ├── LogsOutputInterface.go │ └── logConfigInput.go ├── flag └── flaghelp.go ├── go.mod ├── go.sum ├── main.go ├── mycheck.yaml └── simfang.ttf /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/DepthInspection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/.idea/DepthInspection.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Algorithm/BinaryFind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/Algorithm/BinaryFind.go -------------------------------------------------------------------------------- /InspectionItem/configurationParameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/InspectionItem/configurationParameter.go -------------------------------------------------------------------------------- /InspectionItem/databaseOperatingEnvironment.go: -------------------------------------------------------------------------------- 1 | package InspectionItem 2 | 3 | -------------------------------------------------------------------------------- /InspectionItem/databaseProperty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/InspectionItem/databaseProperty.go -------------------------------------------------------------------------------- /InspectionItem/databaseSecurity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/InspectionItem/databaseSecurity.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/README.md -------------------------------------------------------------------------------- /ResultOutput/PDF/OutPdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/ResultOutput/PDF/OutPdf.go -------------------------------------------------------------------------------- /ResultOutput/PDF/ResultDateProcessing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/ResultOutput/PDF/ResultDateProcessing.go -------------------------------------------------------------------------------- /ResultOutput/PDF/tableFormatModule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/ResultOutput/PDF/tableFormatModule.go -------------------------------------------------------------------------------- /ResultOutput/PDF/tatilModule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/ResultOutput/PDF/tatilModule.go -------------------------------------------------------------------------------- /api/PublicClass/DBPublicDateInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/PublicClass/DBPublicDateInterface.go -------------------------------------------------------------------------------- /api/PublicClass/Global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/PublicClass/Global.go -------------------------------------------------------------------------------- /api/ResultInfoOutInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/ResultInfoOutInterface.go -------------------------------------------------------------------------------- /api/Stream/CalculatedPercentage.go: -------------------------------------------------------------------------------- 1 | package Stream 2 | -------------------------------------------------------------------------------- /api/Stream/dateTypeToConversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/Stream/dateTypeToConversion.go -------------------------------------------------------------------------------- /api/Stream/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/Stream/operation.go -------------------------------------------------------------------------------- /api/loggs/LogsOutputInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/loggs/LogsOutputInterface.go -------------------------------------------------------------------------------- /api/loggs/logConfigInput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/api/loggs/logConfigInput.go -------------------------------------------------------------------------------- /flag/flaghelp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/flag/flaghelp.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/main.go -------------------------------------------------------------------------------- /mycheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/mycheck.yaml -------------------------------------------------------------------------------- /simfang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ywlianghang/mycheck/HEAD/simfang.ttf --------------------------------------------------------------------------------