Initial commit: Decompiled taxService project with Java Decompiler plugin
- Decompiled 2164 Java class files from taxService - Created Maven project structure (pom.xml) - Added Java Decompiler plugin with skills, agents, and scripts - Includes real-name authentication (smz) module analysis - GT3 (金三) system integration code restored Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>master
commit
32db42883d
@ -0,0 +1,48 @@
|
||||
# Compiled class files
|
||||
*.class
|
||||
|
||||
# Log files
|
||||
*.log
|
||||
|
||||
# Package files
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# Build directories
|
||||
target/
|
||||
build/
|
||||
out/
|
||||
|
||||
# IDE files
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.ipr
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
.factorypath
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Maven
|
||||
.mvn/
|
||||
mvnw
|
||||
mvnw.cmd
|
||||
|
||||
# Gradle
|
||||
.gradle/
|
||||
gradlew
|
||||
gradlew.cmd
|
||||
|
||||
# Claude Code plugin cache
|
||||
.claude/
|
||||
@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "java-decompiler",
|
||||
"version": "1.0.0",
|
||||
"description": "Java class file decompiler and project analysis tool for restoring compiled Java projects",
|
||||
"author": {
|
||||
"name": "Claude Code Plugin"
|
||||
},
|
||||
"keywords": ["java", "decompile", "reverse-engineering", "analysis", "class-files"],
|
||||
"skills": "./skills",
|
||||
"agents": "./agents",
|
||||
"scripts": "./scripts"
|
||||
}
|
||||
@ -0,0 +1,67 @@
|
||||
# Java Decompiler Plugin
|
||||
|
||||
A Claude Code plugin for decompiling Java .class files and analyzing compiled Java projects.
|
||||
|
||||
## Features
|
||||
|
||||
- **Batch Decompilation**: Convert .class files back to Java source using CFR decompiler
|
||||
- **Project Structure Analysis**: Analyze package hierarchy, dependencies, and architecture
|
||||
- **Maven/Gradle Generation**: Generate build configuration files
|
||||
- **Dependency Analysis**: Map class dependencies and JAR requirements
|
||||
- **Code Understanding**: AI-assisted analysis of decompiled code
|
||||
|
||||
## Quick Start
|
||||
|
||||
### Prerequisites
|
||||
|
||||
1. Java 8+ installed
|
||||
2. Download CFR decompiler:
|
||||
```bash
|
||||
# Download CFR jar to scripts directory
|
||||
curl -L -o scripts/cfr.jar https://github.com/leibnitz27/cfr/releases/download/0.152/cfr-0.152.jar
|
||||
```
|
||||
|
||||
### Usage
|
||||
|
||||
#### Decompile a project
|
||||
```
|
||||
/decompile-classes ./path/to/classes
|
||||
```
|
||||
|
||||
#### Analyze project structure
|
||||
```
|
||||
/analyze-structure ./path/to/project
|
||||
```
|
||||
|
||||
#### Generate Maven project
|
||||
```
|
||||
/generate-project ./path/to/decompiled
|
||||
```
|
||||
|
||||
#### Analyze dependencies
|
||||
```
|
||||
/analyze-dependencies ./path/to/classes
|
||||
```
|
||||
|
||||
## Components
|
||||
|
||||
### Skills
|
||||
- `decompile-classes` - Guide for decompiling .class files
|
||||
- `analyze-structure` - Analyze project structure and organization
|
||||
- `generate-project` - Generate Maven/Gradle project structure
|
||||
- `analyze-dependencies` - Analyze JAR and class dependencies
|
||||
- `understand-code` - Help understand decompiled business logic
|
||||
|
||||
### Agents
|
||||
- `java-analyzer` - Autonomous Java project analysis
|
||||
- `batch-decompiler` - Batch decompilation handling
|
||||
|
||||
### Scripts
|
||||
- `decompile.sh` - CFR-based batch decompilation
|
||||
- `analyze-deps.sh` - Dependency analysis utility
|
||||
- `generate-pom.sh` - Maven pom.xml generator
|
||||
- `create-structure.sh` - Directory structure creator
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
@ -0,0 +1,146 @@
|
||||
---
|
||||
name: batch-decompiler
|
||||
description: Batch Java class decompiler. Handles large-scale decompilation of .class files using CFR, organizes output, and verifies results. Use when user needs to decompile many class files efficiently.
|
||||
model: sonnet
|
||||
color: green
|
||||
tools:
|
||||
- Read
|
||||
- Bash
|
||||
- Glob
|
||||
- Write
|
||||
---
|
||||
|
||||
# Batch Java Decompiler Agent
|
||||
|
||||
You are an expert at decompiling Java class files. Your role is to efficiently batch-decompile .class files and organize the output.
|
||||
|
||||
## Capabilities
|
||||
|
||||
1. **Batch Processing**: Handle thousands of class files efficiently
|
||||
2. **Error Recovery**: Continue processing even when individual files fail
|
||||
3. **Progress Tracking**: Report progress during long operations
|
||||
4. **Output Organization**: Maintain package structure in output
|
||||
5. **Verification**: Verify decompilation results
|
||||
|
||||
## Decompilation Workflow
|
||||
|
||||
### Step 1: Prepare Environment
|
||||
|
||||
```bash
|
||||
# Check Java installed
|
||||
java -version
|
||||
|
||||
# Verify CFR exists
|
||||
ls -la scripts/cfr.jar
|
||||
|
||||
# Create output directory
|
||||
mkdir -p decompiled/src
|
||||
```
|
||||
|
||||
### Step 2: Assess Input
|
||||
|
||||
```bash
|
||||
# Count class files
|
||||
find <input_dir> -name "*.class" | wc -l
|
||||
|
||||
# Check for inner classes
|
||||
find <input_dir> -name "*\$*.class" | wc -l
|
||||
|
||||
# Estimate time (roughly 100 files per minute)
|
||||
```
|
||||
|
||||
### Step 3: Batch Decompile
|
||||
|
||||
```bash
|
||||
# Use the decompile script
|
||||
bash scripts/decompile.sh <input_dir> <output_dir>
|
||||
|
||||
# Or process in batches for very large projects
|
||||
find <input_dir> -name "*.class" | split -l 500 - batch_
|
||||
for batch in batch_*; do
|
||||
while read class_file; do
|
||||
java -jar cfr.jar "$class_file" --outputdir <output_dir> --silent true
|
||||
done < "$batch"
|
||||
done
|
||||
```
|
||||
|
||||
### Step 4: Handle Errors
|
||||
|
||||
Common errors and solutions:
|
||||
|
||||
| Error | Solution |
|
||||
|-------|----------|
|
||||
| ClassFormatError | Corrupted class file, skip |
|
||||
| UnsupportedClassVersionError | Use newer Java version |
|
||||
| NoClassDefFoundError | Add missing dependencies to classpath |
|
||||
| OutOfMemoryError | Increase heap: `java -Xmx2g -jar cfr.jar ...` |
|
||||
|
||||
### Step 5: Verify Results
|
||||
|
||||
```bash
|
||||
# Count decompiled files
|
||||
find <output_dir> -name "*.java" | wc -l
|
||||
|
||||
# Compare with input
|
||||
INPUT_COUNT=$(find <input_dir> -name "*.class" | wc -l)
|
||||
OUTPUT_COUNT=$(find <output_dir> -name "*.java" | wc -l)
|
||||
echo "Decompiled: $OUTPUT_COUNT / $INPUT_COUNT"
|
||||
|
||||
# Check for empty files
|
||||
find <output_dir> -name "*.java" -empty | wc -l
|
||||
|
||||
# Spot check random files
|
||||
find <output_dir> -name "*.java" | shuf | head -5 | xargs head -20
|
||||
```
|
||||
|
||||
## Output Organization
|
||||
|
||||
Maintain package structure:
|
||||
|
||||
```
|
||||
decompiled/
|
||||
├── src/
|
||||
│ └── com/
|
||||
│ └── company/
|
||||
│ └── project/
|
||||
│ ├── action/
|
||||
│ │ └── UserAction.java
|
||||
│ ├── service/
|
||||
│ │ └── UserService.java
|
||||
│ └── domain/
|
||||
│ └── User.java
|
||||
└── report.txt
|
||||
```
|
||||
|
||||
## Progress Reporting
|
||||
|
||||
During decompilation, report:
|
||||
- Total files to process
|
||||
- Current progress (X/Y)
|
||||
- Success count
|
||||
- Failure count
|
||||
- Estimated time remaining
|
||||
|
||||
## Error Handling
|
||||
|
||||
1. **Individual file errors**: Log and continue
|
||||
2. **Memory errors**: Reduce batch size
|
||||
3. **Permission errors**: Check file permissions
|
||||
4. **Missing CFR**: Download automatically
|
||||
|
||||
## Integration
|
||||
|
||||
After decompilation:
|
||||
1. Run `analyze-structure` to understand the project
|
||||
2. Run `generate-project` to create Maven structure
|
||||
3. Run `understand-code` to analyze business logic
|
||||
|
||||
## Usage
|
||||
|
||||
Invoke this agent when:
|
||||
- User has many .class files to decompile
|
||||
- User wants to restore a compiled Java project
|
||||
- User needs batch processing with error handling
|
||||
- User wants organized, verified output
|
||||
|
||||
The agent will autonomously handle the entire decompilation process.
|
||||
@ -0,0 +1,132 @@
|
||||
---
|
||||
name: java-analyzer
|
||||
description: Autonomous Java project analyzer. Analyzes project structure, identifies patterns, maps dependencies, and generates comprehensive reports. Use when user needs deep analysis of a Java project.
|
||||
model: sonnet
|
||||
color: blue
|
||||
tools:
|
||||
- Read
|
||||
- Bash
|
||||
- Glob
|
||||
- Grep
|
||||
- Write
|
||||
---
|
||||
|
||||
# Java Project Analyzer Agent
|
||||
|
||||
You are an expert Java project analyst. Your role is to deeply analyze Java projects and provide comprehensive insights.
|
||||
|
||||
## Capabilities
|
||||
|
||||
1. **Structure Analysis**: Map package hierarchy, identify modules, understand organization
|
||||
2. **Pattern Detection**: Identify design patterns, architectural styles, code patterns
|
||||
3. **Dependency Mapping**: Trace dependencies between classes, packages, and external libraries
|
||||
4. **Framework Identification**: Detect Spring, Struts, Hibernate, iBatis, and other frameworks
|
||||
5. **Code Quality Assessment**: Identify potential issues, code smells, and improvement areas
|
||||
|
||||
## Analysis Workflow
|
||||
|
||||
### Step 1: Initial Scan
|
||||
|
||||
```bash
|
||||
# Count files
|
||||
find <project_dir> -name "*.java" -o -name "*.class" | wc -l
|
||||
|
||||
# List packages
|
||||
find <project_dir> -name "*.class" | sed 's|/[^/]*\.class$||' | sort -u
|
||||
|
||||
# Check for config files
|
||||
find <project_dir> -name "*.xml" -o -name "*.properties" | head -20
|
||||
```
|
||||
|
||||
### Step 2: Framework Detection
|
||||
|
||||
Look for framework indicators:
|
||||
- Spring: `applicationContext.xml`, `@Autowired`, `@Service`
|
||||
- Struts: `struts.xml`, `*Action.java`, `ActionSupport`
|
||||
- iBatis: `sqlMapConfig.xml`, `SqlMapClient`
|
||||
- Hibernate: `hibernate.cfg.xml`, `@Entity`, `SessionFactory`
|
||||
|
||||
### Step 3: Architecture Analysis
|
||||
|
||||
Identify layers:
|
||||
- **Presentation**: Actions, Controllers, Servlets
|
||||
- **Business**: Services, Business Logic
|
||||
- **Data Access**: DAOs, Repositories
|
||||
- **Domain**: Entities, Value Objects
|
||||
- **Common**: Utilities, Helpers
|
||||
|
||||
### Step 4: Dependency Graph
|
||||
|
||||
Map dependencies:
|
||||
```
|
||||
Presentation Layer
|
||||
↓
|
||||
Business Layer
|
||||
↓
|
||||
Data Access Layer
|
||||
↓
|
||||
Domain Layer
|
||||
↓
|
||||
External Libraries
|
||||
```
|
||||
|
||||
### Step 5: Generate Report
|
||||
|
||||
Create comprehensive analysis report including:
|
||||
1. Project overview
|
||||
2. Package structure
|
||||
3. Module descriptions
|
||||
4. Dependency map
|
||||
5. Framework usage
|
||||
6. Architecture diagram
|
||||
7. Key classes and their roles
|
||||
8. Potential issues
|
||||
|
||||
## Output Format
|
||||
|
||||
Generate a structured report:
|
||||
|
||||
```markdown
|
||||
# Java Project Analysis Report
|
||||
|
||||
## Project Overview
|
||||
- Total classes: X
|
||||
- Packages: Y
|
||||
- Frameworks: Spring, Struts, iBatis
|
||||
|
||||
## Package Structure
|
||||
com.company.project
|
||||
├── action/ (10 classes)
|
||||
├── service/ (15 classes)
|
||||
├── dao/ (8 classes)
|
||||
├── domain/ (25 classes)
|
||||
└── util/ (12 classes)
|
||||
|
||||
## Architecture
|
||||
[Diagram showing layers]
|
||||
|
||||
## Key Components
|
||||
1. **UserAction**: Handles user login
|
||||
2. **UserService**: Business logic for users
|
||||
3. **UserDao**: Database operations
|
||||
|
||||
## Dependencies
|
||||
- Spring Framework 3.2.x
|
||||
- Struts 2.3.x
|
||||
- Oracle JDBC
|
||||
|
||||
## Recommendations
|
||||
1. Consider upgrading to Spring Boot
|
||||
2. Add unit tests
|
||||
3. Implement proper logging
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Invoke this agent when:
|
||||
- User wants to understand a Java project
|
||||
- User needs project documentation
|
||||
- User wants to identify patterns
|
||||
- User needs dependency analysis
|
||||
|
||||
The agent will autonomously scan, analyze, and report on the project.
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,142 @@
|
||||
# Java Decompilers Reference
|
||||
|
||||
## Recommended Decompilers
|
||||
|
||||
### 1. CFR (Class File Reader) - Recommended
|
||||
|
||||
**Best for**: Modern Java (Java 8+), lambda expressions, enums
|
||||
|
||||
- **Download**: https://github.com/leibnitz27/cfr/releases
|
||||
- **Version**: 0.152
|
||||
- **Usage**: `java -jar cfr.jar MyClass.class`
|
||||
|
||||
**Key features**:
|
||||
- Excellent Java 8+ support
|
||||
- Handles modern language features
|
||||
- Active development
|
||||
- Command-line interface
|
||||
|
||||
### 2. Procyon
|
||||
|
||||
**Best for**: Complex generics, enum switch maps
|
||||
|
||||
- **Download**: https://github.com/mstrobel/procyon/releases
|
||||
- **Usage**: `java -jar procyon-decompiler.jar MyClass.class`
|
||||
|
||||
### 3. Fernflower
|
||||
|
||||
**Best for**: IntelliJ IDEA integration
|
||||
|
||||
- **Built into**: IntelliJ IDEA
|
||||
- **Standalone**: https://github.com/fesh0r/fernflower
|
||||
- **Usage**: `java -jar fernflower.jar MyClass.class output/`
|
||||
|
||||
### 4. JD-GUI
|
||||
|
||||
**Best for**: Quick GUI browsing
|
||||
|
||||
- **Download**: http://java-decompiler.github.io/
|
||||
- **Features**: Graphical interface, export source
|
||||
- **Usage**: Open .class or .jar file in GUI
|
||||
|
||||
### 5. JADX
|
||||
|
||||
**Best for**: Android DEX/Android bytecode
|
||||
|
||||
- **Download**: https://github.com/skylot/jadx
|
||||
- **Features**: GUI and CLI, Android support
|
||||
|
||||
## Decompiler Comparison
|
||||
|
||||
| Feature | CFR | Procyon | Fernflower | JD-GUI |
|
||||
|---------|-----|---------|------------|--------|
|
||||
| Java 8+ | ✅ | ✅ | ✅ | ⚠️ |
|
||||
| Lambda | ✅ | ✅ | ✅ | ❌ |
|
||||
| Enum | ✅ | ✅ | ✅ | ⚠️ |
|
||||
| Generics | ✅ | ✅ | ✅ | ⚠️ |
|
||||
| Speed | Fast | Medium | Fast | Fast |
|
||||
| CLI | ✅ | ✅ | ✅ | ❌ |
|
||||
| GUI | ❌ | ❌ | ❌ | ✅ |
|
||||
|
||||
## CFR Usage Examples
|
||||
|
||||
### Basic Decompilation
|
||||
```bash
|
||||
# Single file
|
||||
java -jar cfr.jar MyClass.class
|
||||
|
||||
# Output to directory
|
||||
java -jar cfr.jar MyClass.class --outputdir ./src
|
||||
|
||||
# Multiple files
|
||||
java -jar cfr.jar *.class --outputdir ./src
|
||||
```
|
||||
|
||||
### Advanced Options
|
||||
```bash
|
||||
# Decode lambda expressions
|
||||
java -jar cfr.jar MyClass.class --decodelambdas true
|
||||
|
||||
# Remove boilerplate
|
||||
java -jar cfr.jar MyClass.class --removeboilerplate true
|
||||
|
||||
# Handle obfuscated code
|
||||
java -jar cfr.jar MyClass.class --renamedupmembers true
|
||||
|
||||
# Add classpath for dependencies
|
||||
java -jar cfr.jar MyClass.class --extraclasspath ./lib/*.jar
|
||||
```
|
||||
|
||||
### Batch Processing
|
||||
```bash
|
||||
# Decompile all classes in directory
|
||||
find ./classes -name "*.class" -exec java -jar cfr.jar {} --outputdir ./src \;
|
||||
|
||||
# Using xargs for efficiency
|
||||
find ./classes -name "*.class" | xargs -I {} java -jar cfr.jar {} --outputdir ./src
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Common Errors
|
||||
|
||||
**ClassFormatError**
|
||||
- Cause: Corrupted or invalid class file
|
||||
- Solution: Verify file integrity, re-download if possible
|
||||
|
||||
**UnsupportedClassVersionError**
|
||||
- Cause: Class compiled with newer Java version
|
||||
- Solution: Use matching or newer Java version to decompile
|
||||
|
||||
**NoClassDefFoundError**
|
||||
- Cause: Missing dependency classes
|
||||
- Solution: Add dependencies to classpath with `--extraclasspath`
|
||||
|
||||
**OutOfMemoryError**
|
||||
- Cause: Large class file or complex code
|
||||
- Solution: Increase heap size: `java -Xmx2g -jar cfr.jar ...`
|
||||
|
||||
### Performance Tips
|
||||
|
||||
1. **Batch processing**: Use xargs or scripts for multiple files
|
||||
2. **Memory**: Set appropriate heap size for large projects
|
||||
3. **Parallel**: Process multiple files in parallel
|
||||
4. **Filtering**: Skip test classes if not needed
|
||||
|
||||
## Post-Decompilation
|
||||
|
||||
After decompiling:
|
||||
|
||||
1. **Verify**: Check output file count matches input
|
||||
2. **Review**: Spot-check complex files for accuracy
|
||||
3. **Organize**: Move to proper Maven/Gradle structure
|
||||
4. **Fix**: Address any decompilation artifacts
|
||||
5. **Compile**: Test with `mvn compile`
|
||||
|
||||
## Resources
|
||||
|
||||
- CFR GitHub: https://github.com/leibnitz27/cfr
|
||||
- Procyon GitHub: https://github.com/mstrobel/procyon
|
||||
- Fernflower GitHub: https://github.com/fesh0r/fernflower
|
||||
- JD-GUI: http://java-decompiler.github.io/
|
||||
- JADX GitHub: https://github.com/skylot/jadx
|
||||
@ -0,0 +1,74 @@
|
||||
#!/bin/bash
|
||||
# Analyze Java class dependencies
|
||||
# Usage: ./analyze-deps.sh <classes_dir>
|
||||
|
||||
set -e
|
||||
|
||||
CLASSES_DIR="${1:?Usage: analyze-deps.sh <classes_dir>}"
|
||||
|
||||
if [ ! -d "$CLASSES_DIR" ]; then
|
||||
echo "Error: Directory not found: $CLASSES_DIR"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "=== Java Dependency Analysis ==="
|
||||
echo ""
|
||||
|
||||
# Count class files
|
||||
TOTAL=$(find "$CLASSES_DIR" -name "*.class" | wc -l)
|
||||
echo "Total class files: $TOTAL"
|
||||
echo ""
|
||||
|
||||
# Package structure
|
||||
echo "=== Package Structure ==="
|
||||
find "$CLASSES_DIR" -name "*.class" | \
|
||||
sed "s|$CLASSES_DIR/||" | \
|
||||
sed 's|/[^/]*\.class$||' | \
|
||||
sort -u | \
|
||||
sed 's|/|.|g'
|
||||
echo ""
|
||||
|
||||
# Class count per package
|
||||
echo "=== Classes per Package ==="
|
||||
find "$CLASSES_DIR" -name "*.class" | \
|
||||
sed "s|$CLASSES_DIR/||" | \
|
||||
sed 's|/[^/]*\.class$||' | \
|
||||
sort | uniq -c | sort -rn
|
||||
echo ""
|
||||
|
||||
# Find inner classes
|
||||
echo "=== Inner Classes ==="
|
||||
INNER_COUNT=$(find "$CLASSES_DIR" -name "*\$*.class" | wc -l)
|
||||
echo "Inner/anonymous classes: $INNER_COUNT"
|
||||
echo ""
|
||||
|
||||
# Extract imports from decompiled files if available
|
||||
echo "=== External Dependencies (from JARs) ==="
|
||||
if [ -d "$CLASSES_DIR/../lib" ]; then
|
||||
echo "JAR dependencies:"
|
||||
ls -1 "$CLASSES_DIR/../lib/"*.jar 2>/dev/null | xargs -I {} basename {} .jar
|
||||
else
|
||||
echo "No lib directory found"
|
||||
fi
|
||||
echo ""
|
||||
|
||||
# Interface and abstract class analysis
|
||||
echo "=== Interface Implementation Hints ==="
|
||||
echo "Looking for common patterns..."
|
||||
find "$CLASSES_DIR" -name "*.class" | while read f; do
|
||||
name=$(basename "$f" .class)
|
||||
# Check for common naming patterns
|
||||
case "$name" in
|
||||
*Dao|*DAO) echo " DAO: $name" ;;
|
||||
*Service) echo " Service: $name" ;;
|
||||
*Action) echo " Action: $name" ;;
|
||||
*Domain) echo " Domain: $name" ;;
|
||||
*Bean) echo " Bean: $name" ;;
|
||||
*Impl) echo " Implementation: $name" ;;
|
||||
*Interface) echo " Interface: $name" ;;
|
||||
*Exception) echo " Exception: $name" ;;
|
||||
esac
|
||||
done | sort | head -50
|
||||
|
||||
echo ""
|
||||
echo "=== Analysis Complete ==="
|
||||
@ -0,0 +1,52 @@
|
||||
#!/bin/bash
|
||||
# Analyze Java classes using javap (built-in)
|
||||
# Usage: ./analyze-with-javap.sh <classes_dir> <output_file>
|
||||
|
||||
set -e
|
||||
|
||||
CLASSES_DIR="${1:?Usage: analyze-with-javap.sh <classes_dir> <output_file>}"
|
||||
OUTPUT_FILE="${2:-analysis-report.txt}"
|
||||
|
||||
echo "=== Java Project Analysis Report ===" > "$OUTPUT_FILE"
|
||||
echo "Generated: $(date)" >> "$OUTPUT_FILE"
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
|
||||
# Count files
|
||||
TOTAL=$(find "$CLASSES_DIR" -name "*.class" | wc -l)
|
||||
echo "Total class files: $TOTAL" >> "$OUTPUT_FILE"
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
|
||||
# Package structure
|
||||
echo "=== Package Structure ===" >> "$OUTPUT_FILE"
|
||||
find "$CLASSES_DIR" -name "*.class" | \
|
||||
sed "s|$CLASSES_DIR/||" | \
|
||||
sed 's|/[^/]*\.class$||' | \
|
||||
sort -u | \
|
||||
sed 's|/|.|g' >> "$OUTPUT_FILE"
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
|
||||
# Classes per package
|
||||
echo "=== Classes per Package ===" >> "$OUTPUT_FILE"
|
||||
find "$CLASSES_DIR" -name "*.class" | \
|
||||
sed "s|$CLASSES_DIR/||" | \
|
||||
sed 's|/[^/]*\.class$||' | \
|
||||
sort | uniq -c | sort -rn >> "$OUTPUT_FILE"
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
|
||||
# Analyze each class with javap
|
||||
echo "=== Class Details ===" >> "$OUTPUT_FILE"
|
||||
find "$CLASSES_DIR" -name "*.class" | while read class_file; do
|
||||
rel_path="${class_file#$CLASSES_DIR/}"
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
echo "--- $rel_path ---" >> "$OUTPUT_FILE"
|
||||
|
||||
# Get class info
|
||||
FULL_PATH=$(realpath "$class_file")
|
||||
javap -p "$FULL_PATH" 2>/dev/null >> "$OUTPUT_FILE" || echo " [Error reading class]" >> "$OUTPUT_FILE"
|
||||
done
|
||||
|
||||
echo "" >> "$OUTPUT_FILE"
|
||||
echo "=== Analysis Complete ===" >> "$OUTPUT_FILE"
|
||||
|
||||
echo "Report generated: $OUTPUT_FILE"
|
||||
echo "Total classes analyzed: $TOTAL"
|
||||
@ -0,0 +1,98 @@
|
||||
#!/bin/bash
|
||||
# Create standard Maven project structure
|
||||
# Usage: ./create-structure.sh <project_dir> <base_package>
|
||||
|
||||
set -e
|
||||
|
||||
PROJECT_DIR="${1:?Usage: create-structure.sh <project_dir> <base_package>}"
|
||||
BASE_PACKAGE="${2:-com.example}"
|
||||
|
||||
# Convert package to path
|
||||
PACKAGE_PATH=$(echo "$BASE_PACKAGE" | tr '.' '/')
|
||||
|
||||
echo "Creating Maven project structure..."
|
||||
echo " Project: $PROJECT_DIR"
|
||||
echo " Package: $BASE_PACKAGE"
|
||||
|
||||
# Create standard directories
|
||||
mkdir -p "$PROJECT_DIR/src/main/java/$PACKAGE_PATH"
|
||||
mkdir -p "$PROJECT_DIR/src/main/resources"
|
||||
mkdir -p "$PROJECT_DIR/src/main/webapp/WEB-INF"
|
||||
mkdir -p "$PROJECT_DIR/src/test/java/$PACKAGE_PATH"
|
||||
mkdir -p "$PROJECT_DIR/src/test/resources"
|
||||
mkdir -p "$PROJECT_DIR/lib"
|
||||
|
||||
# Create placeholder files
|
||||
touch "$PROJECT_DIR/src/main/java/$PACKAGE_PATH/.gitkeep"
|
||||
touch "$PROJECT_DIR/src/main/resources/.gitkeep"
|
||||
touch "$PROJECT_DIR/src/test/java/$PACKAGE_PATH/.gitkeep"
|
||||
touch "$PROJECT_DIR/src/test/resources/.gitkeep"
|
||||
|
||||
# Create .gitignore
|
||||
cat > "$PROJECT_DIR/.gitignore" << 'EOF'
|
||||
# Compiled class files
|
||||
*.class
|
||||
|
||||
# Log files
|
||||
*.log
|
||||
|
||||
# Package files
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# Build directories
|
||||
target/
|
||||
build/
|
||||
out/
|
||||
|
||||
# IDE files
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.ipr
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
.factorypath
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Maven
|
||||
.mvn/
|
||||
mvnw
|
||||
mvnw.cmd
|
||||
|
||||
# Gradle
|
||||
.gradle/
|
||||
gradlew
|
||||
gradlew.cmd
|
||||
EOF
|
||||
|
||||
echo "Structure created:"
|
||||
echo " $PROJECT_DIR/"
|
||||
echo " ├── src/"
|
||||
echo " │ ├── main/"
|
||||
echo " │ │ ├── java/$PACKAGE_PATH/"
|
||||
echo " │ │ ├── resources/"
|
||||
echo " │ │ └── webapp/WEB-INF/"
|
||||
echo " │ └── test/"
|
||||
echo " │ ├── java/$PACKAGE_PATH/"
|
||||
echo " │ └── resources/"
|
||||
echo " ├── lib/"
|
||||
echo " ├── .gitignore"
|
||||
echo " └── pom.xml (run generate-pom.sh to create)"
|
||||
echo ""
|
||||
echo "Next steps:"
|
||||
echo " 1. Run decompile.sh to decompile class files"
|
||||
echo " 2. Move decompiled .java files to src/main/java/"
|
||||
echo " 3. Copy resources to src/main/resources/"
|
||||
echo " 4. Run generate-pom.sh to create pom.xml"
|
||||
@ -0,0 +1,70 @@
|
||||
#!/bin/bash
|
||||
# Java Class Decompiler using CFR
|
||||
# Usage: ./decompile.sh <input_dir> <output_dir> [cfr_jar]
|
||||
|
||||
set -e
|
||||
|
||||
INPUT_DIR="${1:?Usage: decompile.sh <input_dir> <output_dir> [cfr_jar]}"
|
||||
OUTPUT_DIR="${2:?Usage: decompile.sh <input_dir> <output_dir> [cfr_jar]}"
|
||||
CFR_JAR="${3:-$(dirname "$0")/cfr.jar}"
|
||||
|
||||
# Check CFR exists
|
||||
if [ ! -f "$CFR_JAR" ]; then
|
||||
echo "Error: CFR jar not found at $CFR_JAR"
|
||||
echo "Download from: https://github.com/leibnitz27/cfr/releases"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check Java installed
|
||||
if ! command -v java &> /dev/null; then
|
||||
echo "Error: Java not found. Please install Java 8+"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create output directory
|
||||
mkdir -p "$OUTPUT_DIR"
|
||||
|
||||
# Find all .class files
|
||||
CLASS_FILES=$(find "$INPUT_DIR" -name "*.class" -type f)
|
||||
TOTAL=$(echo "$CLASS_FILES" | wc -l)
|
||||
CURRENT=0
|
||||
SUCCESS=0
|
||||
FAILED=0
|
||||
|
||||
echo "Found $TOTAL class files to decompile"
|
||||
echo "Output directory: $OUTPUT_DIR"
|
||||
echo "---"
|
||||
|
||||
# Decompile each file
|
||||
while IFS= read -r class_file; do
|
||||
[ -z "$class_file" ] && continue
|
||||
CURRENT=$((CURRENT + 1))
|
||||
|
||||
# Get relative path
|
||||
rel_path="${class_file#$INPUT_DIR/}"
|
||||
# Convert .class to .java
|
||||
java_path="${rel_path%.class}.java"
|
||||
java_output="$OUTPUT_DIR/$java_path"
|
||||
java_dir=$(dirname "$java_output")
|
||||
|
||||
# Create directory
|
||||
mkdir -p "$java_dir"
|
||||
|
||||
# Decompile
|
||||
if java -jar "$CFR_JAR" "$class_file" --outputdir "$OUTPUT_DIR" --silent true 2>/dev/null; then
|
||||
SUCCESS=$((SUCCESS + 1))
|
||||
else
|
||||
FAILED=$((FAILED + 1))
|
||||
echo "[$CURRENT/$TOTAL] FAILED: $rel_path"
|
||||
fi
|
||||
|
||||
# Progress indicator
|
||||
if [ $((CURRENT % 100)) -eq 0 ]; then
|
||||
echo "Progress: $CURRENT/$TOTAL decompiled"
|
||||
fi
|
||||
done <<< "$CLASS_FILES"
|
||||
|
||||
echo "---"
|
||||
echo "Decompilation complete!"
|
||||
echo "Total: $TOTAL | Success: $SUCCESS | Failed: $FAILED"
|
||||
echo "Output: $OUTPUT_DIR"
|
||||
@ -0,0 +1,197 @@
|
||||
#!/bin/bash
|
||||
# Generate Maven pom.xml for decompiled project
|
||||
# Usage: ./generate-pom.sh <project_dir> <group_id> <artifact_id>
|
||||
|
||||
set -e
|
||||
|
||||
PROJECT_DIR="${1:?Usage: generate-pom.sh <project_dir> <group_id> <artifact_id>}"
|
||||
GROUP_ID="${2:-com.example}"
|
||||
ARTIFACT_ID="${3:-$(basename "$PROJECT_DIR")}"
|
||||
VERSION="1.0.0"
|
||||
|
||||
POM_FILE="$PROJECT_DIR/pom.xml"
|
||||
|
||||
echo "Generating Maven pom.xml..."
|
||||
echo " Group: $GROUP_ID"
|
||||
echo " Artifact: $ARTIFACT_ID"
|
||||
echo " Output: $POM_FILE"
|
||||
|
||||
# Detect common frameworks from class names
|
||||
SPRING=false
|
||||
STRUTS=false
|
||||
IBATIS=false
|
||||
HIBERNATE=false
|
||||
AXIS=false
|
||||
|
||||
# Scan for framework indicators
|
||||
if find "$PROJECT_DIR" -name "*.java" -exec grep -l "org.springframework" {} \; 2>/dev/null | head -1 | grep -q .; then
|
||||
SPRING=true
|
||||
fi
|
||||
if find "$PROJECT_DIR" -name "*.java" -exec grep -l "org.apache.struts" {} \; 2>/dev/null | head -1 | grep -q .; then
|
||||
STRUTS=true
|
||||
fi
|
||||
if find "$PROJECT_DIR" -name "*.java" -exec grep -l "com.ibatis" {} \; 2>/dev/null | head -1 | grep -q .; then
|
||||
IBATIS=true
|
||||
fi
|
||||
if find "$PROJECT_DIR" -name "*.java" -exec grep -l "org.hibernate" {} \; 2>/dev/null | head -1 | grep -q .; then
|
||||
HIBERNATE=true
|
||||
fi
|
||||
if find "$PROJECT_DIR" -name "*.java" -exec grep -l "org.apache.axis" {} \; 2>/dev/null | head -1 | grep -q .; then
|
||||
AXIS=true
|
||||
fi
|
||||
|
||||
# Generate pom.xml
|
||||
cat > "$POM_FILE" << EOF
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>${GROUP_ID}</groupId>
|
||||
<artifactId>${ARTIFACT_ID}</artifactId>
|
||||
<version>${VERSION}</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<!-- Servlet API -->
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>javax.servlet-api</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- JSP API -->
|
||||
<dependency>
|
||||
<groupId>javax.servlet.jsp</groupId>
|
||||
<artifactId>javax.servlet.jsp-api</artifactId>
|
||||
<version>2.3.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
EOF
|
||||
|
||||
# Add Spring dependencies if detected
|
||||
if [ "$SPRING" = true ]; then
|
||||
cat >> "$POM_FILE" << EOF
|
||||
|
||||
<!-- Spring Framework -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jdbc</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Add Struts if detected
|
||||
if [ "$STRUTS" = true ]; then
|
||||
cat >> "$POM_FILE" << EOF
|
||||
|
||||
<!-- Struts 2 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.struts</groupId>
|
||||
<artifactId>struts2-core</artifactId>
|
||||
<version>2.3.37</version>
|
||||
</dependency>
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Add iBatis if detected
|
||||
if [ "$IBATIS" = true ]; then
|
||||
cat >> "$POM_FILE" << EOF
|
||||
|
||||
<!-- iBatis -->
|
||||
<dependency>
|
||||
<groupId>org.apache.ibatis</groupId>
|
||||
<artifactId>ibatis-sqlmap</artifactId>
|
||||
<version>2.3.4.726</version>
|
||||
</dependency>
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Add Axis if detected
|
||||
if [ "$AXIS" = true ]; then
|
||||
cat >> "$POM_FILE" << EOF
|
||||
|
||||
<!-- Apache Axis (Web Services) -->
|
||||
<dependency>
|
||||
<groupId>org.apache.axis</groupId>
|
||||
<artifactId>axis</artifactId>
|
||||
<version>1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.xml</groupId>
|
||||
<artifactId>jaxrpc-api</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Add Oracle JDBC (common in enterprise apps)
|
||||
cat >> "$POM_FILE" << EOF
|
||||
|
||||
<!-- Oracle JDBC (install manually to local repo) -->
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>com.oracle</groupId>
|
||||
<artifactId>ojdbc14</artifactId>
|
||||
<version>10.2.0.4</version>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
<!-- Logging -->
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.17</version>
|
||||
</dependency>
|
||||
|
||||
<!-- JUnit -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<finalName>${ARTIFACT_ID}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>3.3.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
EOF
|
||||
|
||||
echo "Generated: $POM_FILE"
|
||||
echo ""
|
||||
echo "Detected frameworks:"
|
||||
[ "$SPRING" = true ] && echo " ✓ Spring"
|
||||
[ "$STRUTS" = true ] && echo " ✓ Struts"
|
||||
[ "$IBATIS" = true ] && echo " ✓ iBatis"
|
||||
[ "$AXIS" = true ] && echo " ✓ Axis Web Services"
|
||||
echo ""
|
||||
echo "Note: You may need to manually install Oracle JDBC to local Maven repo:"
|
||||
echo " mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4 -Dpackaging=jar"
|
||||
@ -0,0 +1,189 @@
|
||||
---
|
||||
name: analyze-dependencies
|
||||
description: Analyze Java class dependencies, JAR requirements, and import relationships. Use when user needs to map dependencies, find missing libraries, or understand code relationships.
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# Dependency Analysis
|
||||
|
||||
This skill analyzes Java project dependencies and relationships.
|
||||
|
||||
## When to Use
|
||||
|
||||
- User needs to find required JAR files
|
||||
- User wants to understand class relationships
|
||||
- User needs to identify missing dependencies
|
||||
- User wants to map import dependencies
|
||||
|
||||
## Analysis Types
|
||||
|
||||
### 1. Import Analysis
|
||||
|
||||
Extract and analyze imports:
|
||||
|
||||
```bash
|
||||
# Get all imports
|
||||
find <dir> -name "*.java" -exec grep "^import" {} \; | \
|
||||
sed 's/import //' | \
|
||||
sed 's/;.*//' | \
|
||||
sort -u
|
||||
|
||||
# Count imports per file
|
||||
find <dir> -name "*.java" -exec sh -c 'echo "$(grep -c "^import" "$1") $1"' _ {} \; | \
|
||||
sort -rn
|
||||
```
|
||||
|
||||
### 2. External Dependency Detection
|
||||
|
||||
Identify required libraries:
|
||||
|
||||
```bash
|
||||
# Find external imports (non-project)
|
||||
find <dir> -name "*.java" -exec grep "^import" {} \; | \
|
||||
sed 's/import //' | \
|
||||
sed 's/;.*//' | \
|
||||
grep -v "^com\.hst\." | \
|
||||
sort -u
|
||||
```
|
||||
|
||||
### 3. JAR Dependency Mapping
|
||||
|
||||
Map imports to JAR files:
|
||||
|
||||
| Import Pattern | Likely JAR |
|
||||
|----------------|------------|
|
||||
| `org.springframework.*` | spring-*.jar |
|
||||
| `org.apache.struts.*` | struts2-core.jar |
|
||||
| `com.ibatis.*` | ibatis-sqlmap.jar |
|
||||
| `org.apache.axis.*` | axis.jar |
|
||||
| `javax.servlet.*` | servlet-api.jar |
|
||||
| `org.apache.log4j.*` | log4j.jar |
|
||||
| `java.sql.*` | JDK (built-in) |
|
||||
|
||||
### 4. Class Relationship Analysis
|
||||
|
||||
Find related classes:
|
||||
|
||||
```bash
|
||||
# Find classes that extend/implement
|
||||
grep -r "extends\|implements" <dir> | \
|
||||
sed 's/:.*extends/: extends/' | \
|
||||
sed 's/:.*implements/: implements/'
|
||||
|
||||
# Find interface implementations
|
||||
grep -r "implements" <dir> | \
|
||||
sed 's/.*implements //' | \
|
||||
sed 's/{.*//' | \
|
||||
sort -u
|
||||
```
|
||||
|
||||
## Dependency Report
|
||||
|
||||
Generate comprehensive report:
|
||||
|
||||
```bash
|
||||
bash C:/Users/K/.claude/plugins/cache/claude-plugins-official/plugin-dev/9eae436aa296/scripts/analyze-deps.sh <classes_dir>
|
||||
```
|
||||
|
||||
## Resolving Dependencies
|
||||
|
||||
### Step 1: Identify Missing JARs
|
||||
|
||||
```bash
|
||||
# List required external packages
|
||||
find <dir> -name "*.java" -exec grep "^import" {} \; | \
|
||||
sed 's/import //' | \
|
||||
sed 's/;.*//' | \
|
||||
cut -d. -f1-3 | \
|
||||
sort -u
|
||||
```
|
||||
|
||||
### Step 2: Find JAR Sources
|
||||
|
||||
Common sources:
|
||||
- Maven Central: https://search.maven.org/
|
||||
- MVN Repository: https://mvnrepository.com/
|
||||
- Project lib/ directory
|
||||
|
||||
### Step 3: Add to Build
|
||||
|
||||
For Maven, add to pom.xml:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
### Step 4: Verify Dependencies
|
||||
|
||||
```bash
|
||||
# Check if JARs are available
|
||||
mvn dependency:tree
|
||||
|
||||
# Download dependencies
|
||||
mvn dependency:resolve
|
||||
```
|
||||
|
||||
## Common Dependency Groups
|
||||
|
||||
### Spring Framework
|
||||
```
|
||||
spring-context
|
||||
spring-web
|
||||
spring-jdbc
|
||||
spring-beans
|
||||
spring-core
|
||||
```
|
||||
|
||||
### Struts 2
|
||||
```
|
||||
struts2-core
|
||||
struts2-spring-plugin
|
||||
xwork-core
|
||||
ognl
|
||||
freemarker
|
||||
```
|
||||
|
||||
### Database
|
||||
```
|
||||
ojdbc14 (Oracle)
|
||||
mysql-connector-java (MySQL)
|
||||
postgresql (PostgreSQL)
|
||||
commons-dbcp (Connection pooling)
|
||||
```
|
||||
|
||||
### Web Services
|
||||
```
|
||||
axis
|
||||
jaxrpc-api
|
||||
wsdl4j
|
||||
commons-discovery
|
||||
```
|
||||
|
||||
## Dependency Graph
|
||||
|
||||
Visualize dependencies:
|
||||
|
||||
```
|
||||
[Action Layer]
|
||||
↓
|
||||
[Service Layer]
|
||||
↓
|
||||
[DAO Layer]
|
||||
↓
|
||||
[Domain Layer]
|
||||
↓
|
||||
[External Libraries]
|
||||
```
|
||||
|
||||
## Integration
|
||||
|
||||
After dependency analysis:
|
||||
|
||||
1. Update pom.xml with missing dependencies
|
||||
2. Run `mvn dependency:resolve` to download
|
||||
3. Run `mvn compile` to verify
|
||||
4. Fix any remaining dependency issues
|
||||
@ -0,0 +1,150 @@
|
||||
---
|
||||
name: analyze-structure
|
||||
description: Analyze Java project structure, package hierarchy, and code organization. Use when user wants to understand project architecture, identify modules, or map code organization.
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# Java Project Structure Analysis
|
||||
|
||||
This skill analyzes Java project structure and organization.
|
||||
|
||||
## When to Use
|
||||
|
||||
- User wants to understand project architecture
|
||||
- User needs to identify modules and packages
|
||||
- User wants to map code organization
|
||||
- User needs to find specific code components
|
||||
|
||||
## Analysis Steps
|
||||
|
||||
### 1. Package Hierarchy
|
||||
|
||||
Map the package structure:
|
||||
|
||||
```bash
|
||||
# Get all packages
|
||||
find <dir> -name "*.java" -o -name "*.class" | \
|
||||
sed 's|/[^/]*\.\(java\|class\)$||' | \
|
||||
sort -u | \
|
||||
sed 's|/|.|g'
|
||||
```
|
||||
|
||||
### 2. Module Identification
|
||||
|
||||
Identify logical modules:
|
||||
|
||||
| Pattern | Likely Module |
|
||||
|---------|---------------|
|
||||
| `*.domain` | Data models/entities |
|
||||
| `*.dao` | Data access layer |
|
||||
| `*.service` | Business logic |
|
||||
| `*.action` | Web controllers (Struts) |
|
||||
| `*.util` | Utility classes |
|
||||
| `*.common` | Shared components |
|
||||
| `*.framework` | Framework code |
|
||||
|
||||
### 3. Class Distribution
|
||||
|
||||
Count classes per package:
|
||||
|
||||
```bash
|
||||
find <dir> -name "*.java" | \
|
||||
sed 's|/[^/]*\.java$||' | \
|
||||
sort | uniq -c | sort -rn
|
||||
```
|
||||
|
||||
### 4. Architecture Layers
|
||||
|
||||
Identify architecture patterns:
|
||||
|
||||
```
|
||||
Presentation Layer
|
||||
├── Actions (Struts)
|
||||
├── Controllers (Spring MVC)
|
||||
└── View (JSP/HTML)
|
||||
|
||||
Business Layer
|
||||
├── Services
|
||||
├── Service Implementations
|
||||
└── Business Logic
|
||||
|
||||
Data Access Layer
|
||||
├── DAOs
|
||||
├── DAO Implementations
|
||||
└── ORM (iBatis/Hibernate)
|
||||
|
||||
Domain Layer
|
||||
├── Domain Objects
|
||||
├── Value Objects
|
||||
└── Entities
|
||||
```
|
||||
|
||||
### 5. Dependency Flow
|
||||
|
||||
Analyze package dependencies:
|
||||
|
||||
```bash
|
||||
# Find imports in each file
|
||||
grep -r "^import" <dir> | \
|
||||
sed 's|:.*import |: |' | \
|
||||
sed 's|;||'
|
||||
```
|
||||
|
||||
## Structure Report
|
||||
|
||||
Generate a structure report:
|
||||
|
||||
```bash
|
||||
# Run the analysis script
|
||||
bash C:/Users/K/.claude/plugins/cache/claude-plugins-official/plugin-dev/9eae436aa296/scripts/analyze-deps.sh <classes_dir>
|
||||
```
|
||||
|
||||
## Common Patterns
|
||||
|
||||
### Enterprise Java (EJB/J2EE)
|
||||
```
|
||||
com.company.project
|
||||
├── ejb/ # Enterprise beans
|
||||
├── web/ # Web components
|
||||
├── common/ # Shared code
|
||||
└── util/ # Utilities
|
||||
```
|
||||
|
||||
### Spring Application
|
||||
```
|
||||
com.company.project
|
||||
├── controller/ # Spring MVC controllers
|
||||
├── service/ # Service interfaces
|
||||
├── service/impl/ # Service implementations
|
||||
├── repository/ # Data repositories
|
||||
├── model/ # Domain models
|
||||
└── config/ # Configuration
|
||||
```
|
||||
|
||||
### Struts Application
|
||||
```
|
||||
com.company.project
|
||||
├── action/ # Struts actions
|
||||
├── form/ # Action forms
|
||||
├── bo/ # Business objects
|
||||
├── dao/ # Data access
|
||||
└── domain/ # Domain objects
|
||||
```
|
||||
|
||||
## Output Format
|
||||
|
||||
The analysis should produce:
|
||||
|
||||
1. **Package Map**: Visual hierarchy of packages
|
||||
2. **Module List**: Identified modules with descriptions
|
||||
3. **Class Count**: Statistics per package
|
||||
4. **Dependency Graph**: Package dependencies
|
||||
5. **Architecture Diagram**: Layer structure
|
||||
|
||||
## Integration
|
||||
|
||||
After structure analysis:
|
||||
|
||||
1. Use `generate-project` to create build structure
|
||||
2. Use `understand-code` to dive into specific modules
|
||||
3. Use `analyze-dependencies` for detailed dependency mapping
|
||||
@ -0,0 +1,112 @@
|
||||
---
|
||||
name: decompile-classes
|
||||
description: Decompile Java .class files back to source code. Use when user wants to restore compiled Java projects, reverse engineer class files, or convert bytecode to readable Java source.
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# Java Class Decompilation Guide
|
||||
|
||||
This skill guides the decompilation of Java .class files back to readable source code.
|
||||
|
||||
## When to Use
|
||||
|
||||
- User has compiled .class files without source code
|
||||
- User wants to restore a Java project from compiled artifacts
|
||||
- User needs to understand legacy compiled code
|
||||
- User wants to reverse engineer a Java application
|
||||
|
||||
## Decompilation Process
|
||||
|
||||
### Step 1: Assess the Project
|
||||
|
||||
Before decompiling, gather information:
|
||||
|
||||
```bash
|
||||
# Count class files
|
||||
find <classes_dir> -name "*.class" | wc -l
|
||||
|
||||
# List package structure
|
||||
find <classes_dir> -name "*.class" | sed 's|/[^/]*\.class$||' | sort -u
|
||||
|
||||
# Check for inner classes
|
||||
find <classes_dir> -name "*\$*.class" | wc -l
|
||||
```
|
||||
|
||||
### Step 2: Download CFR Decompiler
|
||||
|
||||
CFR is the recommended decompiler for modern Java:
|
||||
|
||||
```bash
|
||||
# Download to plugin scripts directory
|
||||
curl -L -o scripts/cfr.jar https://github.com/leibnitz27/cfr/releases/download/0.152/cfr-0.152.jar
|
||||
```
|
||||
|
||||
### Step 3: Run Batch Decompilation
|
||||
|
||||
Use the decompile script:
|
||||
|
||||
```bash
|
||||
bash C:/Users/K/.claude/plugins/cache/claude-plugins-official/plugin-dev/9eae436aa296/scripts/decompile.sh <input_dir> <output_dir>
|
||||
```
|
||||
|
||||
Or decompile individual files:
|
||||
|
||||
```bash
|
||||
java -jar cfr.jar MyClass.class --outputdir ./src
|
||||
```
|
||||
|
||||
### Step 4: Handle Decompilation Issues
|
||||
|
||||
Common issues and solutions:
|
||||
|
||||
| Issue | Solution |
|
||||
|-------|----------|
|
||||
| Enum classes | CFR handles these well by default |
|
||||
| Lambda expressions | Use `--decodelambdas true` |
|
||||
| Inner classes | CFR outputs them as separate files |
|
||||
| Obfuscated code | Use `--renamedupmembers true` |
|
||||
| Missing dependencies | Add classpath with `--extraclasspath` |
|
||||
|
||||
### Step 5: Verify Decompiled Code
|
||||
|
||||
After decompilation:
|
||||
|
||||
1. Check file count matches original
|
||||
2. Look for decompilation errors in output
|
||||
3. Verify package structure is preserved
|
||||
4. Spot-check complex classes for correctness
|
||||
|
||||
## CFR Command Options
|
||||
|
||||
```
|
||||
java -jar cfr.jar <input> [options]
|
||||
|
||||
Options:
|
||||
--outputdir <dir> Output directory
|
||||
--silent Suppress progress output
|
||||
--decodelambdas Decode lambda expressions
|
||||
--decodestringswitch Decode string switches
|
||||
--decodeswitch Decode switch statements
|
||||
--renamedupmembers Rename duplicate members
|
||||
--removeboilerplate Remove boilerplate code
|
||||
--removeinnerclasses Remove inner class references
|
||||
--showinferredlambdaithrows Show inferred lambda throws
|
||||
--extraclasspath <path> Additional classpath for dependencies
|
||||
```
|
||||
|
||||
## Post-Decompilation
|
||||
|
||||
After successful decompilation:
|
||||
|
||||
1. Run `analyze-structure` to understand the project
|
||||
2. Run `generate-project` to create Maven/Gradle structure
|
||||
3. Run `analyze-dependencies` to map dependencies
|
||||
4. Review and fix any decompilation artifacts
|
||||
|
||||
## Tips
|
||||
|
||||
- **Large projects**: Process in batches to manage memory
|
||||
- **Error recovery**: CFR is resilient, but check output for errors
|
||||
- **Naming conflicts**: Inner classes may cause naming issues
|
||||
- **Encoding**: Ensure UTF-8 for Chinese/Unicode content
|
||||
- **Dependencies**: Some classes may reference external JARs
|
||||
@ -0,0 +1,169 @@
|
||||
---
|
||||
name: generate-project
|
||||
description: Generate Maven or Gradle project structure for Java projects. Use when user wants to create build configuration, organize source directories, or set up dependency management.
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# Project Structure Generation
|
||||
|
||||
This skill generates Maven/Gradle project structure and configuration.
|
||||
|
||||
## When to Use
|
||||
|
||||
- User has decompiled code and needs proper project structure
|
||||
- User wants Maven/Gradle build configuration
|
||||
- User needs dependency management setup
|
||||
- User wants to organize code into standard directories
|
||||
|
||||
## Maven Project Generation
|
||||
|
||||
### Step 1: Create Directory Structure
|
||||
|
||||
```bash
|
||||
bash C:/Users/K/.claude/plugins/cache/claude-plugins-official/plugin-dev/9eae436aa296/scripts/create-structure.sh <project_dir> <base_package>
|
||||
```
|
||||
|
||||
This creates:
|
||||
```
|
||||
project/
|
||||
├── src/
|
||||
│ ├── main/
|
||||
│ │ ├── java/<package>/
|
||||
│ │ ├── resources/
|
||||
│ │ └── webapp/WEB-INF/
|
||||
│ └── test/
|
||||
│ ├── java/<package>/
|
||||
│ └── resources/
|
||||
├── lib/
|
||||
└── .gitignore
|
||||
```
|
||||
|
||||
### Step 2: Generate pom.xml
|
||||
|
||||
```bash
|
||||
bash C:/Users/K/.claude/plugins/cache/claude-plugins-official/plugin-dev/9eae436aa296/scripts/generate-pom.sh <project_dir> <group_id> <artifact_id>
|
||||
```
|
||||
|
||||
The script auto-detects frameworks:
|
||||
- Spring
|
||||
- Struts
|
||||
- iBatis
|
||||
- Hibernate
|
||||
- Axis Web Services
|
||||
|
||||
### Step 3: Move Decompiled Code
|
||||
|
||||
```bash
|
||||
# Move decompiled Java files
|
||||
cp -r decompiled/src/* project/src/main/java/
|
||||
|
||||
# Move resources
|
||||
cp -r decompiled/resources/* project/src/main/resources/
|
||||
|
||||
# Move web files
|
||||
cp -r decompiled/webapp/* project/src/main/webapp/
|
||||
```
|
||||
|
||||
### Step 4: Install Dependencies
|
||||
|
||||
```bash
|
||||
# Install Oracle JDBC manually
|
||||
mvn install:install-file \
|
||||
-Dfile=lib/ojdbc14.jar \
|
||||
-DgroupId=com.oracle \
|
||||
-DartifactId=ojdbc14 \
|
||||
-Dversion=10.2.0.4 \
|
||||
-Dpackaging=jar
|
||||
|
||||
# Resolve dependencies
|
||||
mvn dependency:resolve
|
||||
```
|
||||
|
||||
## Gradle Alternative
|
||||
|
||||
For Gradle projects:
|
||||
|
||||
### build.gradle
|
||||
|
||||
```groovy
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'war'
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '1.0.0'
|
||||
|
||||
sourceCompatibility = '1.8'
|
||||
targetCompatibility = '1.8'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
flatDir { dirs 'lib' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'javax.servlet:javax.servlet-api:3.1.0'
|
||||
implementation 'org.springframework:spring-context:3.2.18.RELEASE'
|
||||
implementation 'org.springframework:spring-web:3.2.18.RELEASE'
|
||||
// Add more as detected
|
||||
|
||||
testImplementation 'junit:junit:4.12'
|
||||
}
|
||||
|
||||
war {
|
||||
archiveName = 'app.war'
|
||||
}
|
||||
```
|
||||
|
||||
## Framework-Specific Configuration
|
||||
|
||||
### Spring
|
||||
|
||||
Add to `src/main/webapp/WEB-INF/web.xml`:
|
||||
|
||||
```xml
|
||||
<context-param>
|
||||
<param-name>contextConfigLocation</param-name>
|
||||
<param-value>/WEB-INF/applicationContext.xml</param-value>
|
||||
</context-param>
|
||||
|
||||
<listener>
|
||||
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
||||
</listener>
|
||||
```
|
||||
|
||||
### Struts
|
||||
|
||||
Add to `src/main/webapp/WEB-INF/web.xml`:
|
||||
|
||||
```xml
|
||||
<filter>
|
||||
<filter-name>struts2</filter-name>
|
||||
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
|
||||
</filter>
|
||||
<filter-mapping>
|
||||
<filter-name>struts2</filter-name>
|
||||
<url-pattern>/*</url-pattern>
|
||||
</filter-mapping>
|
||||
```
|
||||
|
||||
## Validation
|
||||
|
||||
After generation:
|
||||
|
||||
1. Check pom.xml has all required dependencies
|
||||
2. Verify directory structure matches package names
|
||||
3. Ensure resources are in correct locations
|
||||
4. Test compilation with `mvn compile`
|
||||
5. Fix any missing dependencies
|
||||
|
||||
## Common Issues
|
||||
|
||||
| Issue | Solution |
|
||||
|-------|----------|
|
||||
| Missing dependency | Add to pom.xml manually |
|
||||
| Package mismatch | Move files to correct directories |
|
||||
| Resource not found | Check src/main/resources |
|
||||
| Web config missing | Copy from original WEB-INF |
|
||||
| Oracle JDBC | Install manually to local repo |
|
||||
@ -0,0 +1,247 @@
|
||||
---
|
||||
name: understand-code
|
||||
description: Help understand decompiled Java code, analyze business logic, and document code functionality. Use when user needs to comprehend code purpose, flow, or behavior.
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# Code Understanding Guide
|
||||
|
||||
This skill helps understand decompiled or existing Java code.
|
||||
|
||||
## When to Use
|
||||
|
||||
- User has decompiled code and needs to understand it
|
||||
- User wants to document business logic
|
||||
- User needs to trace code flow
|
||||
- User wants to identify code patterns
|
||||
|
||||
## Analysis Approach
|
||||
|
||||
### 1. Start with Entry Points
|
||||
|
||||
Identify how the application is accessed:
|
||||
|
||||
```bash
|
||||
# Find Servlet/Action classes
|
||||
find <dir> -name "*Servlet.java" -o -name "*Action.java" | head -20
|
||||
|
||||
# Find Controller classes
|
||||
find <dir> -name "*Controller.java" | head -20
|
||||
|
||||
# Find Service endpoints
|
||||
find <dir> -name "*Service.java" -o -name "*ServiceImpl.java" | head -20
|
||||
```
|
||||
|
||||
### 2. Trace Request Flow
|
||||
|
||||
For Struts applications:
|
||||
|
||||
```
|
||||
HTTP Request
|
||||
↓
|
||||
Struts Filter (web.xml)
|
||||
↓
|
||||
Action Mapping (struts.xml)
|
||||
↓
|
||||
Action Class (execute method)
|
||||
↓
|
||||
Service Layer
|
||||
↓
|
||||
DAO Layer
|
||||
↓
|
||||
Database
|
||||
```
|
||||
|
||||
For Spring applications:
|
||||
|
||||
```
|
||||
HTTP Request
|
||||
↓
|
||||
DispatcherServlet
|
||||
↓
|
||||
Controller (@RequestMapping)
|
||||
↓
|
||||
Service Layer (@Service)
|
||||
↓
|
||||
Repository (@Repository)
|
||||
↓
|
||||
Database
|
||||
```
|
||||
|
||||
### 3. Understand Domain Model
|
||||
|
||||
Analyze domain classes:
|
||||
|
||||
```bash
|
||||
# Find domain/entity classes
|
||||
find <dir> -name "*Domain.java" -o -name "*Entity.java" -o -name "*Bean.java"
|
||||
|
||||
# Check for common patterns
|
||||
grep -l "get\|set" <dir>/*Domain.java | head -10
|
||||
```
|
||||
|
||||
Domain class patterns:
|
||||
- Fields with getters/setters
|
||||
- Serializable implementation
|
||||
- JPA/Hibernate annotations
|
||||
- Relationships (OneToMany, ManyToOne)
|
||||
|
||||
### 4. Map Business Logic
|
||||
|
||||
Identify business operations:
|
||||
|
||||
```bash
|
||||
# Find service methods
|
||||
grep -r "public.*Service" <dir> | head -20
|
||||
|
||||
# Find transaction boundaries
|
||||
grep -r "@Transactional\|beginTransaction" <dir>
|
||||
|
||||
# Find business calculations
|
||||
grep -r "calculate\|compute\|process" <dir>
|
||||
```
|
||||
|
||||
### 5. Configuration Analysis
|
||||
|
||||
Read configuration files:
|
||||
|
||||
```bash
|
||||
# Spring context
|
||||
cat <dir>/spring-application-context.xml
|
||||
|
||||
# Struts config
|
||||
cat <dir>/struts.xml
|
||||
|
||||
# Database config
|
||||
cat <dir>/database.properties
|
||||
|
||||
# Web config
|
||||
cat <dir>/web.xml
|
||||
```
|
||||
|
||||
## Code Patterns
|
||||
|
||||
### DAO Pattern
|
||||
```java
|
||||
public interface UserDao {
|
||||
User findById(Long id);
|
||||
List<User> findAll();
|
||||
void save(User user);
|
||||
void delete(User user);
|
||||
}
|
||||
|
||||
public class UserDaoImpl implements UserDao {
|
||||
// Implementation using iBatis/Hibernate
|
||||
}
|
||||
```
|
||||
|
||||
### Service Pattern
|
||||
```java
|
||||
public interface UserService {
|
||||
User getUser(Long id);
|
||||
void createUser(User user);
|
||||
}
|
||||
|
||||
public class UserServiceImpl implements UserService {
|
||||
private UserDao userDao;
|
||||
|
||||
@Transactional
|
||||
public void createUser(User user) {
|
||||
// Business logic
|
||||
userDao.save(user);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Action Pattern (Struts)
|
||||
```java
|
||||
public class UserAction extends ActionSupport {
|
||||
private UserService userService;
|
||||
private User user;
|
||||
|
||||
public String execute() {
|
||||
// Handle request
|
||||
user = userService.getUser(id);
|
||||
return SUCCESS;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Documentation Generation
|
||||
|
||||
Generate code documentation:
|
||||
|
||||
### 1. Class Summary
|
||||
|
||||
For each class, document:
|
||||
- Purpose/responsibility
|
||||
- Key methods
|
||||
- Dependencies
|
||||
- Usage examples
|
||||
|
||||
### 2. Flow Diagrams
|
||||
|
||||
Create text-based flow diagrams:
|
||||
|
||||
```
|
||||
User Login Flow:
|
||||
┌─────────┐ ┌─────────┐ ┌─────────┐
|
||||
│ Login │───→│ Action │───→│ Service │
|
||||
│ Page │ │ │ │ │
|
||||
└─────────┘ └─────────┘ └─────────┘
|
||||
│ │
|
||||
↓ ↓
|
||||
┌─────────┐ ┌─────────┐
|
||||
│ Validate │ │ DAO │
|
||||
│ Input │ │ │
|
||||
└─────────┘ └─────────┘
|
||||
```
|
||||
|
||||
### 3. Package Documentation
|
||||
|
||||
Document each package:
|
||||
|
||||
```
|
||||
com.hst.taxService.action
|
||||
- Purpose: Struts actions for tax service web interface
|
||||
- Key classes: TaxAction, ReportAction
|
||||
- Dependencies: taxService.service, common.util
|
||||
```
|
||||
|
||||
## Analysis Tools
|
||||
|
||||
### Quick Analysis
|
||||
|
||||
```bash
|
||||
# Count methods per class
|
||||
for f in $(find <dir> -name "*.java"); do
|
||||
echo "$(grep -c "public\|private\|protected" "$f") $f"
|
||||
done | sort -rn | head -20
|
||||
|
||||
# Find complex methods (many lines)
|
||||
for f in $(find <dir> -name "*.java"); do
|
||||
echo "$(wc -l < "$f") $f"
|
||||
done | sort -rn | head -20
|
||||
```
|
||||
|
||||
### Pattern Detection
|
||||
|
||||
```bash
|
||||
# Find singletons
|
||||
grep -r "getInstance\|private static" <dir>
|
||||
|
||||
# Find factories
|
||||
grep -r "Factory\|createInstance" <dir>
|
||||
|
||||
# Find observers
|
||||
grep -r "Listener\|Observer\|addEventListener" <dir>
|
||||
```
|
||||
|
||||
## Integration
|
||||
|
||||
After understanding code:
|
||||
|
||||
1. Create README documentation
|
||||
2. Generate API documentation
|
||||
3. Identify refactoring opportunities
|
||||
4. Plan modernization if needed
|
||||
@ -0,0 +1,113 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.hst</groupId>
|
||||
<artifactId>taxService</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<!-- Servlet API -->
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>javax.servlet-api</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- JSP API -->
|
||||
<dependency>
|
||||
<groupId>javax.servlet.jsp</groupId>
|
||||
<artifactId>javax.servlet.jsp-api</artifactId>
|
||||
<version>2.3.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Spring Framework -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jdbc</artifactId>
|
||||
<version>3.2.18.RELEASE</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Struts 2 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.struts</groupId>
|
||||
<artifactId>struts2-core</artifactId>
|
||||
<version>2.3.37</version>
|
||||
</dependency>
|
||||
|
||||
<!-- iBatis -->
|
||||
<dependency>
|
||||
<groupId>org.apache.ibatis</groupId>
|
||||
<artifactId>ibatis-sqlmap</artifactId>
|
||||
<version>2.3.4.726</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Apache Axis (Web Services) -->
|
||||
<dependency>
|
||||
<groupId>org.apache.axis</groupId>
|
||||
<artifactId>axis</artifactId>
|
||||
<version>1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.xml</groupId>
|
||||
<artifactId>jaxrpc-api</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Oracle JDBC (install manually to local repo) -->
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>com.oracle</groupId>
|
||||
<artifactId>ojdbc14</artifactId>
|
||||
<version>10.2.0.4</version>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
<!-- Logging -->
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.17</version>
|
||||
</dependency>
|
||||
|
||||
<!-- JUnit -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<finalName>taxService</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>3.3.1</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
|
||||
<globalConfiguration>
|
||||
<parameter name="sendMultiRefs" value="true"/>
|
||||
<parameter name="disablePrettyXML" value="true"/>
|
||||
<parameter name="adminPassword" value="admin"/>
|
||||
<parameter name="attachments.Directory" value="E:\tomcat6.0\webapps\swtsys\WEB-INF\attachments"/>
|
||||
<parameter name="dotNetSoapEncFix" value="true"/>
|
||||
<parameter name="enableNamespacePrefixOptimization" value="false"/>
|
||||
<parameter name="sendXMLDeclaration" value="true"/>
|
||||
<parameter name="sendXsiTypes" value="true"/>
|
||||
<parameter name="attachments.implementation" value="org.apache.axis.attachments.AttachmentsImpl"/>
|
||||
<requestFlow>
|
||||
<handler type="java:org.apache.axis.handlers.JWSHandler">
|
||||
<parameter name="scope" value="session"/>
|
||||
</handler>
|
||||
<handler type="java:org.apache.axis.handlers.JWSHandler">
|
||||
<parameter name="scope" value="request"/>
|
||||
<parameter name="extension" value=".jwr"/>
|
||||
</handler>
|
||||
</requestFlow>
|
||||
</globalConfiguration>
|
||||
<handler name="LocalResponder" type="java:org.apache.axis.transport.local.LocalResponder"/>
|
||||
<handler name="URLMapper" type="java:org.apache.axis.handlers.http.URLMapper"/>
|
||||
<handler name="Authenticate" type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/>
|
||||
<service name="AdminService" provider="java:MSG">
|
||||
<parameter name="allowedMethods" value="AdminService"/>
|
||||
<parameter name="enableRemoteAdmin" value="false"/>
|
||||
<parameter name="className" value="org.apache.axis.utils.Admin"/>
|
||||
<namespace>http://xml.apache.org/axis/wsdd/</namespace>
|
||||
</service>
|
||||
|
||||
<service name ="server" provider="java:RPC">
|
||||
<parameter name = "className" value ="com.hst.webService.service.BaseWebService"/>
|
||||
<parameter name ="allowedMethods" value="doService"/>
|
||||
</service>
|
||||
|
||||
|
||||
|
||||
<service name="Version" provider="java:RPC">
|
||||
<parameter name="allowedMethods" value="getVersion"/>
|
||||
<parameter name="className" value="org.apache.axis.Version"/>
|
||||
</service>
|
||||
<transport name="http">
|
||||
<requestFlow>
|
||||
<handler type="URLMapper"/>
|
||||
<handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/>
|
||||
</requestFlow>
|
||||
<parameter name="qs:list" value="org.apache.axis.transport.http.QSListHandler"/>
|
||||
<parameter name="qs:wsdl" value="org.apache.axis.transport.http.QSWSDLHandler"/>
|
||||
<parameter name="qs.list" value="org.apache.axis.transport.http.QSListHandler"/>
|
||||
<parameter name="qs.method" value="org.apache.axis.transport.http.QSMethodHandler"/>
|
||||
<parameter name="qs:method" value="org.apache.axis.transport.http.QSMethodHandler"/>
|
||||
<parameter name="qs.wsdl" value="org.apache.axis.transport.http.QSWSDLHandler"/>
|
||||
</transport>
|
||||
<transport name="local">
|
||||
<responseFlow>
|
||||
<handler type="LocalResponder"/>
|
||||
</responseFlow>
|
||||
</transport>
|
||||
</deployment>
|
||||
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class CzryDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String czrydm;
|
||||
private String czrymc;
|
||||
private String name;
|
||||
private String password;
|
||||
private String swjgdm;
|
||||
private String qxswjgdm;
|
||||
private String bgdh;
|
||||
private String yddh;
|
||||
private String jtdh;
|
||||
private String mail;
|
||||
private String ssbm;
|
||||
private String ssgw;
|
||||
private String zgxtczrydm;
|
||||
private String yhlb;
|
||||
|
||||
public String getBgdh() {
|
||||
return this.bgdh;
|
||||
}
|
||||
|
||||
public void setBgdh(String bgdh) {
|
||||
this.bgdh = bgdh;
|
||||
}
|
||||
|
||||
public String getCzrydm() {
|
||||
return this.czrydm;
|
||||
}
|
||||
|
||||
public void setCzrydm(String czrydm) {
|
||||
this.czrydm = czrydm;
|
||||
}
|
||||
|
||||
public String getCzrymc() {
|
||||
return this.czrymc;
|
||||
}
|
||||
|
||||
public void setCzrymc(String czrymc) {
|
||||
this.czrymc = czrymc;
|
||||
}
|
||||
|
||||
public String getJtdh() {
|
||||
return this.jtdh;
|
||||
}
|
||||
|
||||
public void setJtdh(String jtdh) {
|
||||
this.jtdh = jtdh;
|
||||
}
|
||||
|
||||
public String getMail() {
|
||||
return this.mail;
|
||||
}
|
||||
|
||||
public void setMail(String mail) {
|
||||
this.mail = mail;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getQxswjgdm() {
|
||||
return this.qxswjgdm;
|
||||
}
|
||||
|
||||
public void setQxswjgdm(String qxswjgdm) {
|
||||
this.qxswjgdm = qxswjgdm;
|
||||
}
|
||||
|
||||
public String getSsbm() {
|
||||
return this.ssbm;
|
||||
}
|
||||
|
||||
public void setSsbm(String ssbm) {
|
||||
this.ssbm = ssbm;
|
||||
}
|
||||
|
||||
public String getSsgw() {
|
||||
return this.ssgw;
|
||||
}
|
||||
|
||||
public void setSsgw(String ssgw) {
|
||||
this.ssgw = ssgw;
|
||||
}
|
||||
|
||||
public String getSwjgdm() {
|
||||
return this.swjgdm;
|
||||
}
|
||||
|
||||
public void setSwjgdm(String swjgdm) {
|
||||
this.swjgdm = swjgdm;
|
||||
}
|
||||
|
||||
public String getYddh() {
|
||||
return this.yddh;
|
||||
}
|
||||
|
||||
public void setYddh(String yddh) {
|
||||
this.yddh = yddh;
|
||||
}
|
||||
|
||||
public String getYhlb() {
|
||||
return this.yhlb;
|
||||
}
|
||||
|
||||
public void setYhlb(String yhlb) {
|
||||
this.yhlb = yhlb;
|
||||
}
|
||||
|
||||
public String getZgxtczrydm() {
|
||||
return this.zgxtczrydm;
|
||||
}
|
||||
|
||||
public void setZgxtczrydm(String zgxtczrydm) {
|
||||
this.zgxtczrydm = zgxtczrydm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,344 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class DjNsrxxGgDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Long nsrdzdah;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String swdjlbDm;
|
||||
private String nsrSwjgDm;
|
||||
private String nsrSwjgJbdm;
|
||||
private String hyDm;
|
||||
private String hymxDm;
|
||||
private String tdhyDm;
|
||||
private String djzclxDm;
|
||||
private String hzdjrq;
|
||||
private String swdjblxDm;
|
||||
private String nsrztDm;
|
||||
private String zgswryDm;
|
||||
private String jdxzDm;
|
||||
private String zjgBz;
|
||||
private String jyfw;
|
||||
private String ybnsrbz;
|
||||
private String xgmnsrbz;
|
||||
private String ybnsrzgDm;
|
||||
private String zzsqylxDm;
|
||||
private String zzszsfsDm;
|
||||
private Double xssr;
|
||||
private String wdqzdBz;
|
||||
private String qyxydj;
|
||||
private String zdsylb;
|
||||
private String csdsqyBz;
|
||||
private String sdsdsdzBz;
|
||||
private String jckqyBz;
|
||||
private String mzflqyBz;
|
||||
private String lyDm;
|
||||
private String scjydz;
|
||||
private String fddbrmc;
|
||||
private String cwfzrmc;
|
||||
private String bsrmc;
|
||||
private String dhhm;
|
||||
private String pyjx;
|
||||
|
||||
public Long getNsrdzdah() {
|
||||
return this.nsrdzdah;
|
||||
}
|
||||
|
||||
public void setNsrdzdah(Long nsrdzdah) {
|
||||
this.nsrdzdah = nsrdzdah;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getSwdjlbDm() {
|
||||
return this.swdjlbDm;
|
||||
}
|
||||
|
||||
public void setSwdjlbDm(String swdjlbDm) {
|
||||
this.swdjlbDm = swdjlbDm;
|
||||
}
|
||||
|
||||
public String getNsrSwjgDm() {
|
||||
return this.nsrSwjgDm;
|
||||
}
|
||||
|
||||
public void setNsrSwjgDm(String nsrSwjgDm) {
|
||||
this.nsrSwjgDm = nsrSwjgDm;
|
||||
}
|
||||
|
||||
public String getNsrSwjgJbdm() {
|
||||
return this.nsrSwjgJbdm;
|
||||
}
|
||||
|
||||
public void setNsrSwjgJbdm(String nsrSwjgJbdm) {
|
||||
this.nsrSwjgJbdm = nsrSwjgJbdm;
|
||||
}
|
||||
|
||||
public String getHyDm() {
|
||||
return this.hyDm;
|
||||
}
|
||||
|
||||
public void setHyDm(String hyDm) {
|
||||
this.hyDm = hyDm;
|
||||
}
|
||||
|
||||
public String getHymxDm() {
|
||||
return this.hymxDm;
|
||||
}
|
||||
|
||||
public void setHymxDm(String hymxDm) {
|
||||
this.hymxDm = hymxDm;
|
||||
}
|
||||
|
||||
public String getTdhyDm() {
|
||||
return this.tdhyDm;
|
||||
}
|
||||
|
||||
public void setTdhyDm(String tdhyDm) {
|
||||
this.tdhyDm = tdhyDm;
|
||||
}
|
||||
|
||||
public String getDjzclxDm() {
|
||||
return this.djzclxDm;
|
||||
}
|
||||
|
||||
public void setDjzclxDm(String djzclxDm) {
|
||||
this.djzclxDm = djzclxDm;
|
||||
}
|
||||
|
||||
public String getHzdjrq() {
|
||||
return this.hzdjrq;
|
||||
}
|
||||
|
||||
public void setHzdjrq(String hzdjrq) {
|
||||
this.hzdjrq = hzdjrq;
|
||||
}
|
||||
|
||||
public String getSwdjblxDm() {
|
||||
return this.swdjblxDm;
|
||||
}
|
||||
|
||||
public void setSwdjblxDm(String swdjblxDm) {
|
||||
this.swdjblxDm = swdjblxDm;
|
||||
}
|
||||
|
||||
public String getNsrztDm() {
|
||||
return this.nsrztDm;
|
||||
}
|
||||
|
||||
public void setNsrztDm(String nsrztDm) {
|
||||
this.nsrztDm = nsrztDm;
|
||||
}
|
||||
|
||||
public String getZgswryDm() {
|
||||
return this.zgswryDm;
|
||||
}
|
||||
|
||||
public void setZgswryDm(String zgswryDm) {
|
||||
this.zgswryDm = zgswryDm;
|
||||
}
|
||||
|
||||
public String getJdxzDm() {
|
||||
return this.jdxzDm;
|
||||
}
|
||||
|
||||
public void setJdxzDm(String jdxzDm) {
|
||||
this.jdxzDm = jdxzDm;
|
||||
}
|
||||
|
||||
public String getZjgBz() {
|
||||
return this.zjgBz;
|
||||
}
|
||||
|
||||
public void setZjgBz(String zjgBz) {
|
||||
this.zjgBz = zjgBz;
|
||||
}
|
||||
|
||||
public String getJyfw() {
|
||||
return this.jyfw;
|
||||
}
|
||||
|
||||
public void setJyfw(String jyfw) {
|
||||
this.jyfw = jyfw;
|
||||
}
|
||||
|
||||
public String getYbnsrbz() {
|
||||
return this.ybnsrbz;
|
||||
}
|
||||
|
||||
public void setYbnsrbz(String ybnsrbz) {
|
||||
this.ybnsrbz = ybnsrbz;
|
||||
}
|
||||
|
||||
public String getXgmnsrbz() {
|
||||
return this.xgmnsrbz;
|
||||
}
|
||||
|
||||
public void setXgmnsrbz(String xgmnsrbz) {
|
||||
this.xgmnsrbz = xgmnsrbz;
|
||||
}
|
||||
|
||||
public String getYbnsrzgDm() {
|
||||
return this.ybnsrzgDm;
|
||||
}
|
||||
|
||||
public void setYbnsrzgDm(String ybnsrzgDm) {
|
||||
this.ybnsrzgDm = ybnsrzgDm;
|
||||
}
|
||||
|
||||
public String getZzsqylxDm() {
|
||||
return this.zzsqylxDm;
|
||||
}
|
||||
|
||||
public void setZzsqylxDm(String zzsqylxDm) {
|
||||
this.zzsqylxDm = zzsqylxDm;
|
||||
}
|
||||
|
||||
public String getZzszsfsDm() {
|
||||
return this.zzszsfsDm;
|
||||
}
|
||||
|
||||
public void setZzszsfsDm(String zzszsfsDm) {
|
||||
this.zzszsfsDm = zzszsfsDm;
|
||||
}
|
||||
|
||||
public Double getXssr() {
|
||||
return this.xssr;
|
||||
}
|
||||
|
||||
public void setXssr(Double xssr) {
|
||||
this.xssr = xssr;
|
||||
}
|
||||
|
||||
public String getWdqzdBz() {
|
||||
return this.wdqzdBz;
|
||||
}
|
||||
|
||||
public void setWdqzdBz(String wdqzdBz) {
|
||||
this.wdqzdBz = wdqzdBz;
|
||||
}
|
||||
|
||||
public String getQyxydj() {
|
||||
return this.qyxydj;
|
||||
}
|
||||
|
||||
public void setQyxydj(String qyxydj) {
|
||||
this.qyxydj = qyxydj;
|
||||
}
|
||||
|
||||
public String getZdsylb() {
|
||||
return this.zdsylb;
|
||||
}
|
||||
|
||||
public void setZdsylb(String zdsylb) {
|
||||
this.zdsylb = zdsylb;
|
||||
}
|
||||
|
||||
public String getCsdsqyBz() {
|
||||
return this.csdsqyBz;
|
||||
}
|
||||
|
||||
public void setCsdsqyBz(String csdsqyBz) {
|
||||
this.csdsqyBz = csdsqyBz;
|
||||
}
|
||||
|
||||
public String getSdsdsdzBz() {
|
||||
return this.sdsdsdzBz;
|
||||
}
|
||||
|
||||
public void setSdsdsdzBz(String sdsdsdzBz) {
|
||||
this.sdsdsdzBz = sdsdsdzBz;
|
||||
}
|
||||
|
||||
public String getJckqyBz() {
|
||||
return this.jckqyBz;
|
||||
}
|
||||
|
||||
public void setJckqyBz(String jckqyBz) {
|
||||
this.jckqyBz = jckqyBz;
|
||||
}
|
||||
|
||||
public String getMzflqyBz() {
|
||||
return this.mzflqyBz;
|
||||
}
|
||||
|
||||
public void setMzflqyBz(String mzflqyBz) {
|
||||
this.mzflqyBz = mzflqyBz;
|
||||
}
|
||||
|
||||
public String getLyDm() {
|
||||
return this.lyDm;
|
||||
}
|
||||
|
||||
public void setLyDm(String lyDm) {
|
||||
this.lyDm = lyDm;
|
||||
}
|
||||
|
||||
public String getScjydz() {
|
||||
return this.scjydz;
|
||||
}
|
||||
|
||||
public void setScjydz(String scjydz) {
|
||||
this.scjydz = scjydz;
|
||||
}
|
||||
|
||||
public String getFddbrmc() {
|
||||
return this.fddbrmc;
|
||||
}
|
||||
|
||||
public void setFddbrmc(String fddbrmc) {
|
||||
this.fddbrmc = fddbrmc;
|
||||
}
|
||||
|
||||
public String getCwfzrmc() {
|
||||
return this.cwfzrmc;
|
||||
}
|
||||
|
||||
public void setCwfzrmc(String cwfzrmc) {
|
||||
this.cwfzrmc = cwfzrmc;
|
||||
}
|
||||
|
||||
public String getBsrmc() {
|
||||
return this.bsrmc;
|
||||
}
|
||||
|
||||
public void setBsrmc(String bsrmc) {
|
||||
this.bsrmc = bsrmc;
|
||||
}
|
||||
|
||||
public String getDhhm() {
|
||||
return this.dhhm;
|
||||
}
|
||||
|
||||
public void setDhhm(String dhhm) {
|
||||
this.dhhm = dhhm;
|
||||
}
|
||||
|
||||
public String getPyjx() {
|
||||
return this.pyjx;
|
||||
}
|
||||
|
||||
public void setPyjx(String pyjx) {
|
||||
this.pyjx = pyjx;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class DmJdxzDsDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String jdxzDm;
|
||||
private String jdxzMc;
|
||||
private String swjgDm;
|
||||
private String xzqhDm;
|
||||
private String yxbz;
|
||||
|
||||
public String getJdxzDm() {
|
||||
return this.jdxzDm;
|
||||
}
|
||||
|
||||
public void setJdxzDm(String jdxzDm) {
|
||||
this.jdxzDm = jdxzDm;
|
||||
}
|
||||
|
||||
public String getJdxzMc() {
|
||||
return this.jdxzMc;
|
||||
}
|
||||
|
||||
public void setJdxzMc(String jdxzMc) {
|
||||
this.jdxzMc = jdxzMc;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getXzqhDm() {
|
||||
return this.xzqhDm;
|
||||
}
|
||||
|
||||
public void setXzqhDm(String xzqhDm) {
|
||||
this.xzqhDm = xzqhDm;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class DmJdxzGsDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String jdxzDm;
|
||||
private String jdxzMc;
|
||||
private String swjgDm;
|
||||
private String yb;
|
||||
private String xybz;
|
||||
private String yxbz;
|
||||
|
||||
public String getJdxzDm() {
|
||||
return this.jdxzDm;
|
||||
}
|
||||
|
||||
public void setJdxzDm(String jdxzDm) {
|
||||
this.jdxzDm = jdxzDm;
|
||||
}
|
||||
|
||||
public String getJdxzMc() {
|
||||
return this.jdxzMc;
|
||||
}
|
||||
|
||||
public void setJdxzMc(String jdxzMc) {
|
||||
this.jdxzMc = jdxzMc;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getYb() {
|
||||
return this.yb;
|
||||
}
|
||||
|
||||
public void setYb(String yb) {
|
||||
this.yb = yb;
|
||||
}
|
||||
|
||||
public String getXybz() {
|
||||
return this.xybz;
|
||||
}
|
||||
|
||||
public void setXybz(String xybz) {
|
||||
this.xybz = xybz;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,200 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class DmSwjgDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String swjgDm;
|
||||
private String swjgMc;
|
||||
private String swjgJc;
|
||||
private String swjgBz;
|
||||
private String sjSwjgDm;
|
||||
private String nsrSwjgBz;
|
||||
private String jgjcDm;
|
||||
private String swjgJg;
|
||||
private String swjgYb;
|
||||
private String swjgDz;
|
||||
private String swjgDh;
|
||||
private String czdh;
|
||||
private String dydz;
|
||||
private String xzqhDm;
|
||||
private String swjgFzrDm;
|
||||
private String tsNsrsbh;
|
||||
private Long yxws;
|
||||
private String jbdm;
|
||||
private String jcdm;
|
||||
private String xybz;
|
||||
private String yxbz;
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getSwjgMc() {
|
||||
return this.swjgMc;
|
||||
}
|
||||
|
||||
public void setSwjgMc(String swjgMc) {
|
||||
this.swjgMc = swjgMc;
|
||||
}
|
||||
|
||||
public String getSwjgJc() {
|
||||
return this.swjgJc;
|
||||
}
|
||||
|
||||
public void setSwjgJc(String swjgJc) {
|
||||
this.swjgJc = swjgJc;
|
||||
}
|
||||
|
||||
public String getSwjgBz() {
|
||||
return this.swjgBz;
|
||||
}
|
||||
|
||||
public void setSwjgBz(String swjgBz) {
|
||||
this.swjgBz = swjgBz;
|
||||
}
|
||||
|
||||
public String getSjSwjgDm() {
|
||||
return this.sjSwjgDm;
|
||||
}
|
||||
|
||||
public void setSjSwjgDm(String sjSwjgDm) {
|
||||
this.sjSwjgDm = sjSwjgDm;
|
||||
}
|
||||
|
||||
public String getNsrSwjgBz() {
|
||||
return this.nsrSwjgBz;
|
||||
}
|
||||
|
||||
public void setNsrSwjgBz(String nsrSwjgBz) {
|
||||
this.nsrSwjgBz = nsrSwjgBz;
|
||||
}
|
||||
|
||||
public String getJgjcDm() {
|
||||
return this.jgjcDm;
|
||||
}
|
||||
|
||||
public void setJgjcDm(String jgjcDm) {
|
||||
this.jgjcDm = jgjcDm;
|
||||
}
|
||||
|
||||
public String getSwjgJg() {
|
||||
return this.swjgJg;
|
||||
}
|
||||
|
||||
public void setSwjgJg(String swjgJg) {
|
||||
this.swjgJg = swjgJg;
|
||||
}
|
||||
|
||||
public String getSwjgYb() {
|
||||
return this.swjgYb;
|
||||
}
|
||||
|
||||
public void setSwjgYb(String swjgYb) {
|
||||
this.swjgYb = swjgYb;
|
||||
}
|
||||
|
||||
public String getSwjgDz() {
|
||||
return this.swjgDz;
|
||||
}
|
||||
|
||||
public void setSwjgDz(String swjgDz) {
|
||||
this.swjgDz = swjgDz;
|
||||
}
|
||||
|
||||
public String getSwjgDh() {
|
||||
return this.swjgDh;
|
||||
}
|
||||
|
||||
public void setSwjgDh(String swjgDh) {
|
||||
this.swjgDh = swjgDh;
|
||||
}
|
||||
|
||||
public String getCzdh() {
|
||||
return this.czdh;
|
||||
}
|
||||
|
||||
public void setCzdh(String czdh) {
|
||||
this.czdh = czdh;
|
||||
}
|
||||
|
||||
public String getDydz() {
|
||||
return this.dydz;
|
||||
}
|
||||
|
||||
public void setDydz(String dydz) {
|
||||
this.dydz = dydz;
|
||||
}
|
||||
|
||||
public String getXzqhDm() {
|
||||
return this.xzqhDm;
|
||||
}
|
||||
|
||||
public void setXzqhDm(String xzqhDm) {
|
||||
this.xzqhDm = xzqhDm;
|
||||
}
|
||||
|
||||
public String getSwjgFzrDm() {
|
||||
return this.swjgFzrDm;
|
||||
}
|
||||
|
||||
public void setSwjgFzrDm(String swjgFzrDm) {
|
||||
this.swjgFzrDm = swjgFzrDm;
|
||||
}
|
||||
|
||||
public String getTsNsrsbh() {
|
||||
return this.tsNsrsbh;
|
||||
}
|
||||
|
||||
public void setTsNsrsbh(String tsNsrsbh) {
|
||||
this.tsNsrsbh = tsNsrsbh;
|
||||
}
|
||||
|
||||
public Long getYxws() {
|
||||
return this.yxws;
|
||||
}
|
||||
|
||||
public void setYxws(Long yxws) {
|
||||
this.yxws = yxws;
|
||||
}
|
||||
|
||||
public String getJbdm() {
|
||||
return this.jbdm;
|
||||
}
|
||||
|
||||
public void setJbdm(String jbdm) {
|
||||
this.jbdm = jbdm;
|
||||
}
|
||||
|
||||
public String getJcdm() {
|
||||
return this.jcdm;
|
||||
}
|
||||
|
||||
public void setJcdm(String jcdm) {
|
||||
this.jcdm = jcdm;
|
||||
}
|
||||
|
||||
public String getXybz() {
|
||||
return this.xybz;
|
||||
}
|
||||
|
||||
public void setXybz(String xybz) {
|
||||
this.xybz = xybz;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class DmbGgDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String dm;
|
||||
private String mc;
|
||||
|
||||
public String getDm() {
|
||||
return this.dm;
|
||||
}
|
||||
|
||||
public void setDm(String dm) {
|
||||
this.dm = dm;
|
||||
}
|
||||
|
||||
public String getMc() {
|
||||
return this.mc;
|
||||
}
|
||||
|
||||
public void setMc(String mc) {
|
||||
this.mc = mc;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,362 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class XsdwCzryDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String userid;
|
||||
private String xsdwxh;
|
||||
private String xsdwmc;
|
||||
private String username;
|
||||
private String userlogin;
|
||||
private String userpwd;
|
||||
private String sjhm;
|
||||
private String bgsdh1;
|
||||
private String bgsdh2;
|
||||
private String jtdh;
|
||||
private String mail;
|
||||
private String zjhm;
|
||||
private String qybz;
|
||||
private String czryYxbz;
|
||||
private String xsdwdz;
|
||||
private String xsdwyb;
|
||||
private String xsdwfzrxm;
|
||||
private String xsdwfzrsfz;
|
||||
private String xsdwfzrlxdh;
|
||||
private String xsdwlxrxm1;
|
||||
private String xsdwlxrlxdh1;
|
||||
private String xsdwlxrxm2;
|
||||
private String xsdwlxrlxdh2;
|
||||
private String bz;
|
||||
private String zcm;
|
||||
private String xsdwYxbz;
|
||||
private String gdslbdm;
|
||||
private String cjrdm;
|
||||
private String cjrq;
|
||||
private String xgrdm;
|
||||
private String xgrq;
|
||||
private String gsqybz;
|
||||
private String gsswjgdm;
|
||||
private String gswtdzxyh;
|
||||
private String mskjbz;
|
||||
private String jbzsbz;
|
||||
private String dsqybz;
|
||||
private String dsswjgdm;
|
||||
private String dswtdzxyh;
|
||||
|
||||
public String getBgsdh1() {
|
||||
return this.bgsdh1;
|
||||
}
|
||||
|
||||
public void setBgsdh1(String bgsdh1) {
|
||||
this.bgsdh1 = bgsdh1;
|
||||
}
|
||||
|
||||
public String getBgsdh2() {
|
||||
return this.bgsdh2;
|
||||
}
|
||||
|
||||
public void setBgsdh2(String bgsdh2) {
|
||||
this.bgsdh2 = bgsdh2;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getCjrdm() {
|
||||
return this.cjrdm;
|
||||
}
|
||||
|
||||
public void setCjrdm(String cjrdm) {
|
||||
this.cjrdm = cjrdm;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getCzryYxbz() {
|
||||
return this.czryYxbz;
|
||||
}
|
||||
|
||||
public void setCzryYxbz(String czryYxbz) {
|
||||
this.czryYxbz = czryYxbz;
|
||||
}
|
||||
|
||||
public String getDsqybz() {
|
||||
return this.dsqybz;
|
||||
}
|
||||
|
||||
public void setDsqybz(String dsqybz) {
|
||||
this.dsqybz = dsqybz;
|
||||
}
|
||||
|
||||
public String getDsswjgdm() {
|
||||
return this.dsswjgdm;
|
||||
}
|
||||
|
||||
public void setDsswjgdm(String dsswjgdm) {
|
||||
this.dsswjgdm = dsswjgdm;
|
||||
}
|
||||
|
||||
public String getDswtdzxyh() {
|
||||
return this.dswtdzxyh;
|
||||
}
|
||||
|
||||
public void setDswtdzxyh(String dswtdzxyh) {
|
||||
this.dswtdzxyh = dswtdzxyh;
|
||||
}
|
||||
|
||||
public String getGdslbdm() {
|
||||
return this.gdslbdm;
|
||||
}
|
||||
|
||||
public void setGdslbdm(String gdslbdm) {
|
||||
this.gdslbdm = gdslbdm;
|
||||
}
|
||||
|
||||
public String getGsqybz() {
|
||||
return this.gsqybz;
|
||||
}
|
||||
|
||||
public void setGsqybz(String gsqybz) {
|
||||
this.gsqybz = gsqybz;
|
||||
}
|
||||
|
||||
public String getGsswjgdm() {
|
||||
return this.gsswjgdm;
|
||||
}
|
||||
|
||||
public void setGsswjgdm(String gsswjgdm) {
|
||||
this.gsswjgdm = gsswjgdm;
|
||||
}
|
||||
|
||||
public String getGswtdzxyh() {
|
||||
return this.gswtdzxyh;
|
||||
}
|
||||
|
||||
public void setGswtdzxyh(String gswtdzxyh) {
|
||||
this.gswtdzxyh = gswtdzxyh;
|
||||
}
|
||||
|
||||
public String getJbzsbz() {
|
||||
return this.jbzsbz;
|
||||
}
|
||||
|
||||
public void setJbzsbz(String jbzsbz) {
|
||||
this.jbzsbz = jbzsbz;
|
||||
}
|
||||
|
||||
public String getJtdh() {
|
||||
return this.jtdh;
|
||||
}
|
||||
|
||||
public void setJtdh(String jtdh) {
|
||||
this.jtdh = jtdh;
|
||||
}
|
||||
|
||||
public String getMail() {
|
||||
return this.mail;
|
||||
}
|
||||
|
||||
public void setMail(String mail) {
|
||||
this.mail = mail;
|
||||
}
|
||||
|
||||
public String getMskjbz() {
|
||||
return this.mskjbz;
|
||||
}
|
||||
|
||||
public void setMskjbz(String mskjbz) {
|
||||
this.mskjbz = mskjbz;
|
||||
}
|
||||
|
||||
public String getQybz() {
|
||||
return this.qybz;
|
||||
}
|
||||
|
||||
public void setQybz(String qybz) {
|
||||
this.qybz = qybz;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getUserlogin() {
|
||||
return this.userlogin;
|
||||
}
|
||||
|
||||
public void setUserlogin(String userlogin) {
|
||||
this.userlogin = userlogin;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getUserpwd() {
|
||||
return this.userpwd;
|
||||
}
|
||||
|
||||
public void setUserpwd(String userpwd) {
|
||||
this.userpwd = userpwd;
|
||||
}
|
||||
|
||||
public String getXgrdm() {
|
||||
return this.xgrdm;
|
||||
}
|
||||
|
||||
public void setXgrdm(String xgrdm) {
|
||||
this.xgrdm = xgrdm;
|
||||
}
|
||||
|
||||
public String getXgrq() {
|
||||
return this.xgrq;
|
||||
}
|
||||
|
||||
public void setXgrq(String xgrq) {
|
||||
this.xgrq = xgrq;
|
||||
}
|
||||
|
||||
public String getXsdwdz() {
|
||||
return this.xsdwdz;
|
||||
}
|
||||
|
||||
public void setXsdwdz(String xsdwdz) {
|
||||
this.xsdwdz = xsdwdz;
|
||||
}
|
||||
|
||||
public String getXsdwfzrlxdh() {
|
||||
return this.xsdwfzrlxdh;
|
||||
}
|
||||
|
||||
public void setXsdwfzrlxdh(String xsdwfzrlxdh) {
|
||||
this.xsdwfzrlxdh = xsdwfzrlxdh;
|
||||
}
|
||||
|
||||
public String getXsdwfzrsfz() {
|
||||
return this.xsdwfzrsfz;
|
||||
}
|
||||
|
||||
public void setXsdwfzrsfz(String xsdwfzrsfz) {
|
||||
this.xsdwfzrsfz = xsdwfzrsfz;
|
||||
}
|
||||
|
||||
public String getXsdwfzrxm() {
|
||||
return this.xsdwfzrxm;
|
||||
}
|
||||
|
||||
public void setXsdwfzrxm(String xsdwfzrxm) {
|
||||
this.xsdwfzrxm = xsdwfzrxm;
|
||||
}
|
||||
|
||||
public String getXsdwlxrlxdh1() {
|
||||
return this.xsdwlxrlxdh1;
|
||||
}
|
||||
|
||||
public void setXsdwlxrlxdh1(String xsdwlxrlxdh1) {
|
||||
this.xsdwlxrlxdh1 = xsdwlxrlxdh1;
|
||||
}
|
||||
|
||||
public String getXsdwlxrlxdh2() {
|
||||
return this.xsdwlxrlxdh2;
|
||||
}
|
||||
|
||||
public void setXsdwlxrlxdh2(String xsdwlxrlxdh2) {
|
||||
this.xsdwlxrlxdh2 = xsdwlxrlxdh2;
|
||||
}
|
||||
|
||||
public String getXsdwlxrxm1() {
|
||||
return this.xsdwlxrxm1;
|
||||
}
|
||||
|
||||
public void setXsdwlxrxm1(String xsdwlxrxm1) {
|
||||
this.xsdwlxrxm1 = xsdwlxrxm1;
|
||||
}
|
||||
|
||||
public String getXsdwlxrxm2() {
|
||||
return this.xsdwlxrxm2;
|
||||
}
|
||||
|
||||
public void setXsdwlxrxm2(String xsdwlxrxm2) {
|
||||
this.xsdwlxrxm2 = xsdwlxrxm2;
|
||||
}
|
||||
|
||||
public String getXsdwmc() {
|
||||
return this.xsdwmc;
|
||||
}
|
||||
|
||||
public void setXsdwmc(String xsdwmc) {
|
||||
this.xsdwmc = xsdwmc;
|
||||
}
|
||||
|
||||
public String getXsdwxh() {
|
||||
return this.xsdwxh;
|
||||
}
|
||||
|
||||
public void setXsdwxh(String xsdwxh) {
|
||||
this.xsdwxh = xsdwxh;
|
||||
}
|
||||
|
||||
public String getXsdwyb() {
|
||||
return this.xsdwyb;
|
||||
}
|
||||
|
||||
public void setXsdwyb(String xsdwyb) {
|
||||
this.xsdwyb = xsdwyb;
|
||||
}
|
||||
|
||||
public String getXsdwYxbz() {
|
||||
return this.xsdwYxbz;
|
||||
}
|
||||
|
||||
public void setXsdwYxbz(String xsdwYxbz) {
|
||||
this.xsdwYxbz = xsdwYxbz;
|
||||
}
|
||||
|
||||
public String getZcm() {
|
||||
return this.zcm;
|
||||
}
|
||||
|
||||
public void setZcm(String zcm) {
|
||||
this.zcm = zcm;
|
||||
}
|
||||
|
||||
public String getZjhm() {
|
||||
return this.zjhm;
|
||||
}
|
||||
|
||||
public void setZjhm(String zjhm) {
|
||||
this.zjhm = zjhm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,263 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class XsdwDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String xsdwxh;
|
||||
private String xsdwmc;
|
||||
private String xsdwlxdm;
|
||||
private String xsdwlxmc;
|
||||
private String xsdwdz;
|
||||
private String xsdwyb;
|
||||
private String xsdwfzrxm;
|
||||
private String xsdwfzrsfz;
|
||||
private String xsdwfzrlxdh;
|
||||
private String xsdwlxrxm1;
|
||||
private String xsdwlxrlxdh1;
|
||||
private String xsdwlxrxm2;
|
||||
private String xsdwlxrlxdh2;
|
||||
private String bz;
|
||||
private String zcm;
|
||||
private String gdslbdm;
|
||||
private String cjrdm;
|
||||
private String cjrq;
|
||||
private String xgrdm;
|
||||
private String xgrq;
|
||||
private String dsqybz;
|
||||
private String dsswjgdm;
|
||||
private String dswtdzxyh;
|
||||
private String gsqybz;
|
||||
private String gsswjgdm;
|
||||
private String gswtdzxyh;
|
||||
private String mskjbz;
|
||||
private String jbzsbz;
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getCjrdm() {
|
||||
return this.cjrdm;
|
||||
}
|
||||
|
||||
public void setCjrdm(String cjrdm) {
|
||||
this.cjrdm = cjrdm;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getDsqybz() {
|
||||
return this.dsqybz;
|
||||
}
|
||||
|
||||
public void setDsqybz(String dsqybz) {
|
||||
this.dsqybz = dsqybz;
|
||||
}
|
||||
|
||||
public String getDsswjgdm() {
|
||||
return this.dsswjgdm;
|
||||
}
|
||||
|
||||
public void setDsswjgdm(String dsswjgdm) {
|
||||
this.dsswjgdm = dsswjgdm;
|
||||
}
|
||||
|
||||
public String getDswtdzxyh() {
|
||||
return this.dswtdzxyh;
|
||||
}
|
||||
|
||||
public void setDswtdzxyh(String dswtdzxyh) {
|
||||
this.dswtdzxyh = dswtdzxyh;
|
||||
}
|
||||
|
||||
public String getGdslbdm() {
|
||||
return this.gdslbdm;
|
||||
}
|
||||
|
||||
public void setGdslbdm(String gdslbdm) {
|
||||
this.gdslbdm = gdslbdm;
|
||||
}
|
||||
|
||||
public String getGsqybz() {
|
||||
return this.gsqybz;
|
||||
}
|
||||
|
||||
public void setGsqybz(String gsqybz) {
|
||||
this.gsqybz = gsqybz;
|
||||
}
|
||||
|
||||
public String getGsswjgdm() {
|
||||
return this.gsswjgdm;
|
||||
}
|
||||
|
||||
public void setGsswjgdm(String gsswjgdm) {
|
||||
this.gsswjgdm = gsswjgdm;
|
||||
}
|
||||
|
||||
public String getGswtdzxyh() {
|
||||
return this.gswtdzxyh;
|
||||
}
|
||||
|
||||
public void setGswtdzxyh(String gswtdzxyh) {
|
||||
this.gswtdzxyh = gswtdzxyh;
|
||||
}
|
||||
|
||||
public String getJbzsbz() {
|
||||
return this.jbzsbz;
|
||||
}
|
||||
|
||||
public void setJbzsbz(String jbzsbz) {
|
||||
this.jbzsbz = jbzsbz;
|
||||
}
|
||||
|
||||
public String getMskjbz() {
|
||||
return this.mskjbz;
|
||||
}
|
||||
|
||||
public void setMskjbz(String mskjbz) {
|
||||
this.mskjbz = mskjbz;
|
||||
}
|
||||
|
||||
public String getXgrdm() {
|
||||
return this.xgrdm;
|
||||
}
|
||||
|
||||
public void setXgrdm(String xgrdm) {
|
||||
this.xgrdm = xgrdm;
|
||||
}
|
||||
|
||||
public String getXgrq() {
|
||||
return this.xgrq;
|
||||
}
|
||||
|
||||
public void setXgrq(String xgrq) {
|
||||
this.xgrq = xgrq;
|
||||
}
|
||||
|
||||
public String getXsdwdz() {
|
||||
return this.xsdwdz;
|
||||
}
|
||||
|
||||
public void setXsdwdz(String xsdwdz) {
|
||||
this.xsdwdz = xsdwdz;
|
||||
}
|
||||
|
||||
public String getXsdwfzrlxdh() {
|
||||
return this.xsdwfzrlxdh;
|
||||
}
|
||||
|
||||
public void setXsdwfzrlxdh(String xsdwfzrlxdh) {
|
||||
this.xsdwfzrlxdh = xsdwfzrlxdh;
|
||||
}
|
||||
|
||||
public String getXsdwfzrsfz() {
|
||||
return this.xsdwfzrsfz;
|
||||
}
|
||||
|
||||
public void setXsdwfzrsfz(String xsdwfzrsfz) {
|
||||
this.xsdwfzrsfz = xsdwfzrsfz;
|
||||
}
|
||||
|
||||
public String getXsdwfzrxm() {
|
||||
return this.xsdwfzrxm;
|
||||
}
|
||||
|
||||
public void setXsdwfzrxm(String xsdwfzrxm) {
|
||||
this.xsdwfzrxm = xsdwfzrxm;
|
||||
}
|
||||
|
||||
public String getXsdwlxdm() {
|
||||
return this.xsdwlxdm;
|
||||
}
|
||||
|
||||
public void setXsdwlxdm(String xsdwlxdm) {
|
||||
this.xsdwlxdm = xsdwlxdm;
|
||||
}
|
||||
|
||||
public String getXsdwlxmc() {
|
||||
return this.xsdwlxmc;
|
||||
}
|
||||
|
||||
public void setXsdwlxmc(String xsdwlxmc) {
|
||||
this.xsdwlxmc = xsdwlxmc;
|
||||
}
|
||||
|
||||
public String getXsdwlxrlxdh1() {
|
||||
return this.xsdwlxrlxdh1;
|
||||
}
|
||||
|
||||
public void setXsdwlxrlxdh1(String xsdwlxrlxdh1) {
|
||||
this.xsdwlxrlxdh1 = xsdwlxrlxdh1;
|
||||
}
|
||||
|
||||
public String getXsdwlxrlxdh2() {
|
||||
return this.xsdwlxrlxdh2;
|
||||
}
|
||||
|
||||
public void setXsdwlxrlxdh2(String xsdwlxrlxdh2) {
|
||||
this.xsdwlxrlxdh2 = xsdwlxrlxdh2;
|
||||
}
|
||||
|
||||
public String getXsdwlxrxm1() {
|
||||
return this.xsdwlxrxm1;
|
||||
}
|
||||
|
||||
public void setXsdwlxrxm1(String xsdwlxrxm1) {
|
||||
this.xsdwlxrxm1 = xsdwlxrxm1;
|
||||
}
|
||||
|
||||
public String getXsdwlxrxm2() {
|
||||
return this.xsdwlxrxm2;
|
||||
}
|
||||
|
||||
public void setXsdwlxrxm2(String xsdwlxrxm2) {
|
||||
this.xsdwlxrxm2 = xsdwlxrxm2;
|
||||
}
|
||||
|
||||
public String getXsdwmc() {
|
||||
return this.xsdwmc;
|
||||
}
|
||||
|
||||
public void setXsdwmc(String xsdwmc) {
|
||||
this.xsdwmc = xsdwmc;
|
||||
}
|
||||
|
||||
public String getXsdwxh() {
|
||||
return this.xsdwxh;
|
||||
}
|
||||
|
||||
public void setXsdwxh(String xsdwxh) {
|
||||
this.xsdwxh = xsdwxh;
|
||||
}
|
||||
|
||||
public String getXsdwyb() {
|
||||
return this.xsdwyb;
|
||||
}
|
||||
|
||||
public void setXsdwyb(String xsdwyb) {
|
||||
this.xsdwyb = xsdwyb;
|
||||
}
|
||||
|
||||
public String getZcm() {
|
||||
return this.zcm;
|
||||
}
|
||||
|
||||
public void setZcm(String zcm) {
|
||||
this.zcm = zcm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,110 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class XtGt3LogDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String tranId;
|
||||
private String reqTime;
|
||||
private String reqData;
|
||||
private String clbz;
|
||||
private String gt3RetCode;
|
||||
private String resTime;
|
||||
private String resData;
|
||||
private String resCode;
|
||||
private String resMess;
|
||||
private String errMess;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getTranId() {
|
||||
return this.tranId;
|
||||
}
|
||||
|
||||
public void setTranId(String tranId) {
|
||||
this.tranId = tranId;
|
||||
}
|
||||
|
||||
public String getReqTime() {
|
||||
return this.reqTime;
|
||||
}
|
||||
|
||||
public void setReqTime(String reqTime) {
|
||||
this.reqTime = reqTime;
|
||||
}
|
||||
|
||||
public String getReqData() {
|
||||
return this.reqData;
|
||||
}
|
||||
|
||||
public void setReqData(String reqData) {
|
||||
this.reqData = reqData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getResTime() {
|
||||
return this.resTime;
|
||||
}
|
||||
|
||||
public void setResTime(String resTime) {
|
||||
this.resTime = resTime;
|
||||
}
|
||||
|
||||
public String getResData() {
|
||||
return this.resData;
|
||||
}
|
||||
|
||||
public void setResData(String resData) {
|
||||
this.resData = resData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getGt3RetCode() {
|
||||
return this.gt3RetCode;
|
||||
}
|
||||
|
||||
public void setGt3RetCode(String gt3RetCode) {
|
||||
this.gt3RetCode = gt3RetCode;
|
||||
}
|
||||
|
||||
public String getResCode() {
|
||||
return this.resCode;
|
||||
}
|
||||
|
||||
public void setResCode(String resCode) {
|
||||
this.resCode = resCode;
|
||||
}
|
||||
|
||||
public String getResMess() {
|
||||
return this.resMess;
|
||||
}
|
||||
|
||||
public void setResMess(String resMess) {
|
||||
this.resMess = resMess;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,146 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class XtGt3SmbsLogDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String tranId;
|
||||
private String reqTime;
|
||||
private String reqData;
|
||||
private String clbz;
|
||||
private String gt3RetCode;
|
||||
private String resTime;
|
||||
private String resData;
|
||||
private String resCode;
|
||||
private String resMess;
|
||||
private String errMess;
|
||||
private String ywid;
|
||||
private String swjgDm;
|
||||
private String bsdtDjxh;
|
||||
private Long timeUsed;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getTranId() {
|
||||
return this.tranId;
|
||||
}
|
||||
|
||||
public void setTranId(String tranId) {
|
||||
this.tranId = tranId;
|
||||
}
|
||||
|
||||
public String getReqTime() {
|
||||
return this.reqTime;
|
||||
}
|
||||
|
||||
public void setReqTime(String reqTime) {
|
||||
this.reqTime = reqTime;
|
||||
}
|
||||
|
||||
public String getReqData() {
|
||||
return this.reqData;
|
||||
}
|
||||
|
||||
public void setReqData(String reqData) {
|
||||
this.reqData = reqData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getResTime() {
|
||||
return this.resTime;
|
||||
}
|
||||
|
||||
public void setResTime(String resTime) {
|
||||
this.resTime = resTime;
|
||||
}
|
||||
|
||||
public String getResData() {
|
||||
return this.resData;
|
||||
}
|
||||
|
||||
public void setResData(String resData) {
|
||||
this.resData = resData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getGt3RetCode() {
|
||||
return this.gt3RetCode;
|
||||
}
|
||||
|
||||
public void setGt3RetCode(String gt3RetCode) {
|
||||
this.gt3RetCode = gt3RetCode;
|
||||
}
|
||||
|
||||
public String getResCode() {
|
||||
return this.resCode;
|
||||
}
|
||||
|
||||
public void setResCode(String resCode) {
|
||||
this.resCode = resCode;
|
||||
}
|
||||
|
||||
public String getResMess() {
|
||||
return this.resMess;
|
||||
}
|
||||
|
||||
public void setResMess(String resMess) {
|
||||
this.resMess = resMess;
|
||||
}
|
||||
|
||||
public String getYwid() {
|
||||
return this.ywid;
|
||||
}
|
||||
|
||||
public void setYwid(String ywid) {
|
||||
this.ywid = ywid;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public Long getTimeUsed() {
|
||||
return this.timeUsed;
|
||||
}
|
||||
|
||||
public void setTimeUsed(Long timeUsed) {
|
||||
this.timeUsed = timeUsed;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.business.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class XtTaxServiceLogDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String recvTime;
|
||||
private String recvData;
|
||||
private String clbz;
|
||||
private String backTime;
|
||||
private String backData;
|
||||
private String errMess;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getRecvTime() {
|
||||
return this.recvTime;
|
||||
}
|
||||
|
||||
public void setRecvTime(String recvTime) {
|
||||
this.recvTime = recvTime;
|
||||
}
|
||||
|
||||
public String getRecvData() {
|
||||
return this.recvData;
|
||||
}
|
||||
|
||||
public void setRecvData(String recvData) {
|
||||
this.recvData = recvData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getBackTime() {
|
||||
return this.backTime;
|
||||
}
|
||||
|
||||
public void setBackTime(String backTime) {
|
||||
this.backTime = backTime;
|
||||
}
|
||||
|
||||
public String getBackData() {
|
||||
return this.backData;
|
||||
}
|
||||
|
||||
public void setBackData(String backData) {
|
||||
this.backData = backData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.struts2.convention.annotation.ParentPackage
|
||||
* org.apache.struts2.convention.annotation.Result
|
||||
* org.springframework.dao.DataAccessException
|
||||
*/
|
||||
package com.hst.common.action;
|
||||
|
||||
import com.hst.common.domain.TaxCommonReturnDomain;
|
||||
import com.hst.common.service.BaseBusinessService;
|
||||
import com.hst.framework.action.BaseAction;
|
||||
import com.hst.framework.constants.AppServiceConstants;
|
||||
import com.hst.framework.constants.WebConstants;
|
||||
import com.hst.framework.domain.BaseBusinessDomain;
|
||||
import com.hst.framework.util.HstEncodeUtil;
|
||||
import org.apache.struts2.convention.annotation.ParentPackage;
|
||||
import org.apache.struts2.convention.annotation.Result;
|
||||
import org.springframework.dao.DataAccessException;
|
||||
|
||||
@ParentPackage(value="basebusiness-json")
|
||||
@Result(name="json", type="json", params={"root", "result"})
|
||||
public class ExtendAction
|
||||
extends BaseAction {
|
||||
private BaseBusinessService service;
|
||||
protected BaseBusinessDomain domain;
|
||||
|
||||
public TaxCommonReturnDomain handleException(Exception e) {
|
||||
TaxCommonReturnDomain messageDomain = new TaxCommonReturnDomain();
|
||||
if (e instanceof DataAccessException) {
|
||||
int secondOraIndex;
|
||||
DataAccessException dae = (DataAccessException)e;
|
||||
String message = dae.getMessage();
|
||||
int oraIndex = (message = HstEncodeUtil.ISO2GBK(message)).indexOf("ORA-");
|
||||
if (oraIndex > 0 && (message = message.substring(oraIndex)).length() >= 4 && (secondOraIndex = message.substring(4, message.length()).indexOf("ORA")) > 0) {
|
||||
message = message.substring(0, secondOraIndex + 4);
|
||||
}
|
||||
messageDomain.setCode(AppServiceConstants.TAX_DB_ERROR);
|
||||
messageDomain.setMess(message);
|
||||
if (WebConstants.LOG_KZ_ERRORS.equals("Y")) {
|
||||
_logger.error((Object)message);
|
||||
}
|
||||
return messageDomain;
|
||||
}
|
||||
messageDomain.setCode(AppServiceConstants.TAX_APP_ERROR);
|
||||
if (e.toString().length() > 1000) {
|
||||
messageDomain.setMess(e.toString().substring(0, 999));
|
||||
} else {
|
||||
messageDomain.setMess(e.toString());
|
||||
}
|
||||
if (WebConstants.LOG_KZ_ERRORS.equals("Y")) {
|
||||
_logger.error((Object)e.toString());
|
||||
}
|
||||
return messageDomain;
|
||||
}
|
||||
|
||||
public BaseBusinessDomain getDomain() {
|
||||
return this.domain;
|
||||
}
|
||||
|
||||
public void setDomain(BaseBusinessDomain domain) {
|
||||
this.domain = domain;
|
||||
}
|
||||
|
||||
public BaseBusinessService getService() {
|
||||
return this.service;
|
||||
}
|
||||
|
||||
public void setService(BaseBusinessService service) {
|
||||
this.service = service;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhPubFile
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String fileDjxh;
|
||||
private byte[] filedata;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getFileDjxh() {
|
||||
return this.fileDjxh;
|
||||
}
|
||||
|
||||
public void setFileDjxh(String fileDjxh) {
|
||||
this.fileDjxh = fileDjxh;
|
||||
}
|
||||
|
||||
public byte[] getFiledata() {
|
||||
return this.filedata;
|
||||
}
|
||||
|
||||
public void setFiledata(byte[] filedata) {
|
||||
this.filedata = filedata;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhPubPic
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String picDjxh;
|
||||
private byte[] pic;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public byte[] getPic() {
|
||||
return this.pic;
|
||||
}
|
||||
|
||||
public void setPic(byte[] pic) {
|
||||
this.pic = pic;
|
||||
}
|
||||
|
||||
public String getPicDjxh() {
|
||||
return this.picDjxh;
|
||||
}
|
||||
|
||||
public void setPicDjxh(String picDjxh) {
|
||||
this.picDjxh = picDjxh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,173 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhQytjSqlZxjg
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String zxjgUuid;
|
||||
private String tjrwUuid;
|
||||
private String djxh;
|
||||
private String tjdlDm;
|
||||
private String tjxlDm;
|
||||
private String sqlXh;
|
||||
private String col1;
|
||||
private String col2;
|
||||
private String col3;
|
||||
private String col4;
|
||||
private String col5;
|
||||
private String col6;
|
||||
private String col7;
|
||||
private String col8;
|
||||
private String col9;
|
||||
private String col10;
|
||||
private String cjrq;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getZxjgUuid() {
|
||||
return this.zxjgUuid;
|
||||
}
|
||||
|
||||
public void setZxjgUuid(String zxjgUuid) {
|
||||
this.zxjgUuid = zxjgUuid;
|
||||
}
|
||||
|
||||
public String getTjrwUuid() {
|
||||
return this.tjrwUuid;
|
||||
}
|
||||
|
||||
public void setTjrwUuid(String tjrwUuid) {
|
||||
this.tjrwUuid = tjrwUuid;
|
||||
}
|
||||
|
||||
public String getDjxh() {
|
||||
return this.djxh;
|
||||
}
|
||||
|
||||
public void setDjxh(String djxh) {
|
||||
this.djxh = djxh;
|
||||
}
|
||||
|
||||
public String getTjdlDm() {
|
||||
return this.tjdlDm;
|
||||
}
|
||||
|
||||
public void setTjdlDm(String tjdlDm) {
|
||||
this.tjdlDm = tjdlDm;
|
||||
}
|
||||
|
||||
public String getTjxlDm() {
|
||||
return this.tjxlDm;
|
||||
}
|
||||
|
||||
public void setTjxlDm(String tjxlDm) {
|
||||
this.tjxlDm = tjxlDm;
|
||||
}
|
||||
|
||||
public String getSqlXh() {
|
||||
return this.sqlXh;
|
||||
}
|
||||
|
||||
public void setSqlXh(String sqlXh) {
|
||||
this.sqlXh = sqlXh;
|
||||
}
|
||||
|
||||
public String getCol1() {
|
||||
return this.col1;
|
||||
}
|
||||
|
||||
public void setCol1(String col1) {
|
||||
this.col1 = col1;
|
||||
}
|
||||
|
||||
public String getCol2() {
|
||||
return this.col2;
|
||||
}
|
||||
|
||||
public void setCol2(String col2) {
|
||||
this.col2 = col2;
|
||||
}
|
||||
|
||||
public String getCol3() {
|
||||
return this.col3;
|
||||
}
|
||||
|
||||
public void setCol3(String col3) {
|
||||
this.col3 = col3;
|
||||
}
|
||||
|
||||
public String getCol4() {
|
||||
return this.col4;
|
||||
}
|
||||
|
||||
public void setCol4(String col4) {
|
||||
this.col4 = col4;
|
||||
}
|
||||
|
||||
public String getCol5() {
|
||||
return this.col5;
|
||||
}
|
||||
|
||||
public void setCol5(String col5) {
|
||||
this.col5 = col5;
|
||||
}
|
||||
|
||||
public String getCol6() {
|
||||
return this.col6;
|
||||
}
|
||||
|
||||
public void setCol6(String col6) {
|
||||
this.col6 = col6;
|
||||
}
|
||||
|
||||
public String getCol7() {
|
||||
return this.col7;
|
||||
}
|
||||
|
||||
public void setCol7(String col7) {
|
||||
this.col7 = col7;
|
||||
}
|
||||
|
||||
public String getCol8() {
|
||||
return this.col8;
|
||||
}
|
||||
|
||||
public void setCol8(String col8) {
|
||||
this.col8 = col8;
|
||||
}
|
||||
|
||||
public String getCol9() {
|
||||
return this.col9;
|
||||
}
|
||||
|
||||
public void setCol9(String col9) {
|
||||
this.col9 = col9;
|
||||
}
|
||||
|
||||
public String getCol10() {
|
||||
return this.col10;
|
||||
}
|
||||
|
||||
public void setCol10(String col10) {
|
||||
this.col10 = col10;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,128 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhSwjgZhxxGr
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String swjgDm;
|
||||
private String openId;
|
||||
private String sex;
|
||||
private String nickName;
|
||||
private String city;
|
||||
private String country;
|
||||
private String province;
|
||||
private String subscribeDay;
|
||||
private String subscribeTime;
|
||||
private String remark;
|
||||
private String groupid;
|
||||
private String yxbz;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return this.openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return this.nickName;
|
||||
}
|
||||
|
||||
public void setNickName(String nickName) {
|
||||
this.nickName = nickName;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return this.city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getCountry() {
|
||||
return this.country;
|
||||
}
|
||||
|
||||
public void setCountry(String country) {
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
public String getProvince() {
|
||||
return this.province;
|
||||
}
|
||||
|
||||
public void setProvince(String province) {
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public String getSubscribeDay() {
|
||||
return this.subscribeDay;
|
||||
}
|
||||
|
||||
public void setSubscribeDay(String subscribeDay) {
|
||||
this.subscribeDay = subscribeDay;
|
||||
}
|
||||
|
||||
public String getSubscribeTime() {
|
||||
return this.subscribeTime;
|
||||
}
|
||||
|
||||
public void setSubscribeTime(String subscribeTime) {
|
||||
this.subscribeTime = subscribeTime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getGroupid() {
|
||||
return this.groupid;
|
||||
}
|
||||
|
||||
public void setGroupid(String groupid) {
|
||||
this.groupid = groupid;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhYyfwYysjfb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String czryDm;
|
||||
private String rq;
|
||||
private String sxwbz;
|
||||
private String rsmax;
|
||||
private String yxbz;
|
||||
private String fbbz;
|
||||
private String rsyyy;
|
||||
private String rskyy;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getCzryDm() {
|
||||
return this.czryDm;
|
||||
}
|
||||
|
||||
public void setCzryDm(String czryDm) {
|
||||
this.czryDm = czryDm;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
|
||||
public String getSxwbz() {
|
||||
return this.sxwbz;
|
||||
}
|
||||
|
||||
public void setSxwbz(String sxwbz) {
|
||||
this.sxwbz = sxwbz;
|
||||
}
|
||||
|
||||
public String getRsmax() {
|
||||
return this.rsmax;
|
||||
}
|
||||
|
||||
public void setRsmax(String rsmax) {
|
||||
this.rsmax = rsmax;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getFbbz() {
|
||||
return this.fbbz;
|
||||
}
|
||||
|
||||
public void setFbbz(String fbbz) {
|
||||
this.fbbz = fbbz;
|
||||
}
|
||||
|
||||
public String getRsyyy() {
|
||||
return this.rsyyy;
|
||||
}
|
||||
|
||||
public void setRsyyy(String rsyyy) {
|
||||
this.rsyyy = rsyyy;
|
||||
}
|
||||
|
||||
public String getRskyy() {
|
||||
return this.rskyy;
|
||||
}
|
||||
|
||||
public void setRskyy(String rskyy) {
|
||||
this.rskyy = rskyy;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhYyfwYyxx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String yyfwXh;
|
||||
private String czryDm;
|
||||
private String rq;
|
||||
private String sxwbz;
|
||||
private String swjgDm;
|
||||
private String openId;
|
||||
private String bsydjXh;
|
||||
private String yysj;
|
||||
private String yysxh;
|
||||
private String yxbz;
|
||||
private String qxsj;
|
||||
private String slsj;
|
||||
private String slqkms;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getYyfwXh() {
|
||||
return this.yyfwXh;
|
||||
}
|
||||
|
||||
public void setYyfwXh(String yyfwXh) {
|
||||
this.yyfwXh = yyfwXh;
|
||||
}
|
||||
|
||||
public String getCzryDm() {
|
||||
return this.czryDm;
|
||||
}
|
||||
|
||||
public void setCzryDm(String czryDm) {
|
||||
this.czryDm = czryDm;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
|
||||
public String getSxwbz() {
|
||||
return this.sxwbz;
|
||||
}
|
||||
|
||||
public void setSxwbz(String sxwbz) {
|
||||
this.sxwbz = sxwbz;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return this.openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId;
|
||||
}
|
||||
|
||||
public String getBsydjXh() {
|
||||
return this.bsydjXh;
|
||||
}
|
||||
|
||||
public void setBsydjXh(String bsydjXh) {
|
||||
this.bsydjXh = bsydjXh;
|
||||
}
|
||||
|
||||
public String getYysj() {
|
||||
return this.yysj;
|
||||
}
|
||||
|
||||
public void setYysj(String yysj) {
|
||||
this.yysj = yysj;
|
||||
}
|
||||
|
||||
public String getYysxh() {
|
||||
return this.yysxh;
|
||||
}
|
||||
|
||||
public void setYysxh(String yysxh) {
|
||||
this.yysxh = yysxh;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getQxsj() {
|
||||
return this.qxsj;
|
||||
}
|
||||
|
||||
public void setQxsj(String qxsj) {
|
||||
this.qxsj = qxsj;
|
||||
}
|
||||
|
||||
public String getSlsj() {
|
||||
return this.slsj;
|
||||
}
|
||||
|
||||
public void setSlsj(String slsj) {
|
||||
this.slsj = slsj;
|
||||
}
|
||||
|
||||
public String getSlqkms() {
|
||||
return this.slqkms;
|
||||
}
|
||||
|
||||
public void setSlqkms(String slqkms) {
|
||||
this.slqkms = slqkms;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhZxzcZcjd
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String zcwjDjxh;
|
||||
private String wjh;
|
||||
private String bt;
|
||||
private String fbrq;
|
||||
private String fbdw;
|
||||
private String nr;
|
||||
private String url;
|
||||
private String yxbz;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getZcwjDjxh() {
|
||||
return this.zcwjDjxh;
|
||||
}
|
||||
|
||||
public void setZcwjDjxh(String zcwjDjxh) {
|
||||
this.zcwjDjxh = zcwjDjxh;
|
||||
}
|
||||
|
||||
public String getWjh() {
|
||||
return this.wjh;
|
||||
}
|
||||
|
||||
public void setWjh(String wjh) {
|
||||
this.wjh = wjh;
|
||||
}
|
||||
|
||||
public String getBt() {
|
||||
return this.bt;
|
||||
}
|
||||
|
||||
public void setBt(String bt) {
|
||||
this.bt = bt;
|
||||
}
|
||||
|
||||
public String getFbrq() {
|
||||
return this.fbrq;
|
||||
}
|
||||
|
||||
public void setFbrq(String fbrq) {
|
||||
this.fbrq = fbrq;
|
||||
}
|
||||
|
||||
public String getFbdw() {
|
||||
return this.fbdw;
|
||||
}
|
||||
|
||||
public void setFbdw(String fbdw) {
|
||||
this.fbdw = fbdw;
|
||||
}
|
||||
|
||||
public String getNr() {
|
||||
return this.nr;
|
||||
}
|
||||
|
||||
public void setNr(String nr) {
|
||||
this.nr = nr;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhZxzcZxwj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String zcwjDjxh;
|
||||
private String wjh;
|
||||
private String bt;
|
||||
private String fbrq;
|
||||
private String fbdw;
|
||||
private String nr;
|
||||
private String url;
|
||||
private String yxbz;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getZcwjDjxh() {
|
||||
return this.zcwjDjxh;
|
||||
}
|
||||
|
||||
public void setZcwjDjxh(String zcwjDjxh) {
|
||||
this.zcwjDjxh = zcwjDjxh;
|
||||
}
|
||||
|
||||
public String getWjh() {
|
||||
return this.wjh;
|
||||
}
|
||||
|
||||
public void setWjh(String wjh) {
|
||||
this.wjh = wjh;
|
||||
}
|
||||
|
||||
public String getBt() {
|
||||
return this.bt;
|
||||
}
|
||||
|
||||
public void setBt(String bt) {
|
||||
this.bt = bt;
|
||||
}
|
||||
|
||||
public String getFbrq() {
|
||||
return this.fbrq;
|
||||
}
|
||||
|
||||
public void setFbrq(String fbrq) {
|
||||
this.fbrq = fbrq;
|
||||
}
|
||||
|
||||
public String getFbdw() {
|
||||
return this.fbdw;
|
||||
}
|
||||
|
||||
public void setFbdw(String fbdw) {
|
||||
this.fbdw = fbdw;
|
||||
}
|
||||
|
||||
public String getNr() {
|
||||
return this.nr;
|
||||
}
|
||||
|
||||
public void setNr(String nr) {
|
||||
this.nr = nr;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,227 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class FwhZzfdWxsmrz
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String smrz_uuid;
|
||||
private String rzurl;
|
||||
private String rzzt;
|
||||
private String cjrq;
|
||||
private String swjgDm;
|
||||
private String openId;
|
||||
private String sfzhm;
|
||||
private String sjhm;
|
||||
private String xm;
|
||||
private String xb;
|
||||
private String mz;
|
||||
private String zz;
|
||||
private String csnyr;
|
||||
private String qfjg;
|
||||
private String yxqx;
|
||||
private String sfzpic;
|
||||
private String sfzpic2;
|
||||
private String errcode;
|
||||
private String errmess;
|
||||
private String errcode2;
|
||||
private String errmess2;
|
||||
private String bdlx;
|
||||
private String rxpic;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getSmrz_uuid() {
|
||||
return this.smrz_uuid;
|
||||
}
|
||||
|
||||
public void setSmrz_uuid(String smrz_uuid) {
|
||||
this.smrz_uuid = smrz_uuid;
|
||||
}
|
||||
|
||||
public String getRzurl() {
|
||||
return this.rzurl;
|
||||
}
|
||||
|
||||
public void setRzurl(String rzurl) {
|
||||
this.rzurl = rzurl;
|
||||
}
|
||||
|
||||
public String getRzzt() {
|
||||
return this.rzzt;
|
||||
}
|
||||
|
||||
public void setRzzt(String rzzt) {
|
||||
this.rzzt = rzzt;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return this.openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getXb() {
|
||||
return this.xb;
|
||||
}
|
||||
|
||||
public void setXb(String xb) {
|
||||
this.xb = xb;
|
||||
}
|
||||
|
||||
public String getMz() {
|
||||
return this.mz;
|
||||
}
|
||||
|
||||
public void setMz(String mz) {
|
||||
this.mz = mz;
|
||||
}
|
||||
|
||||
public String getZz() {
|
||||
return this.zz;
|
||||
}
|
||||
|
||||
public void setZz(String zz) {
|
||||
this.zz = zz;
|
||||
}
|
||||
|
||||
public String getCsnyr() {
|
||||
return this.csnyr;
|
||||
}
|
||||
|
||||
public void setCsnyr(String csnyr) {
|
||||
this.csnyr = csnyr;
|
||||
}
|
||||
|
||||
public String getQfjg() {
|
||||
return this.qfjg;
|
||||
}
|
||||
|
||||
public void setQfjg(String qfjg) {
|
||||
this.qfjg = qfjg;
|
||||
}
|
||||
|
||||
public String getYxqx() {
|
||||
return this.yxqx;
|
||||
}
|
||||
|
||||
public void setYxqx(String yxqx) {
|
||||
this.yxqx = yxqx;
|
||||
}
|
||||
|
||||
public String getSfzpic() {
|
||||
return this.sfzpic;
|
||||
}
|
||||
|
||||
public void setSfzpic(String sfzpic) {
|
||||
this.sfzpic = sfzpic;
|
||||
}
|
||||
|
||||
public String getSfzpic2() {
|
||||
return this.sfzpic2;
|
||||
}
|
||||
|
||||
public void setSfzpic2(String sfzpic2) {
|
||||
this.sfzpic2 = sfzpic2;
|
||||
}
|
||||
|
||||
public String getErrcode() {
|
||||
return this.errcode;
|
||||
}
|
||||
|
||||
public void setErrcode(String errcode) {
|
||||
this.errcode = errcode;
|
||||
}
|
||||
|
||||
public String getErrmess() {
|
||||
return this.errmess;
|
||||
}
|
||||
|
||||
public void setErrmess(String errmess) {
|
||||
this.errmess = errmess;
|
||||
}
|
||||
|
||||
public String getErrcode2() {
|
||||
return this.errcode2;
|
||||
}
|
||||
|
||||
public void setErrcode2(String errcode2) {
|
||||
this.errcode2 = errcode2;
|
||||
}
|
||||
|
||||
public String getErrmess2() {
|
||||
return this.errmess2;
|
||||
}
|
||||
|
||||
public void setErrmess2(String errmess2) {
|
||||
this.errmess2 = errmess2;
|
||||
}
|
||||
|
||||
public String getBdlx() {
|
||||
return this.bdlx;
|
||||
}
|
||||
|
||||
public void setBdlx(String bdlx) {
|
||||
this.bdlx = bdlx;
|
||||
}
|
||||
|
||||
public String getRxpic() {
|
||||
return this.rxpic;
|
||||
}
|
||||
|
||||
public void setRxpic(String rxpic) {
|
||||
this.rxpic = rxpic;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,218 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbPtfpFpDkfpsq
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String dkfpsq_xh;
|
||||
private String dkfpzl_dm;
|
||||
private String sqrq;
|
||||
private String openid;
|
||||
private String fkfmc;
|
||||
private String fkfzjhm;
|
||||
private String fkfdz;
|
||||
private String fkfdh;
|
||||
private String fkfyhmc;
|
||||
private String fkfyhzh;
|
||||
private String skfmc;
|
||||
private String skfzjhm;
|
||||
private String skfdz;
|
||||
private String skfdh;
|
||||
private String skfyhmc;
|
||||
private String skfyhzh;
|
||||
private String kpje;
|
||||
private String hwlwfwmc;
|
||||
private String sqdbh;
|
||||
private String sqrlx;
|
||||
private String bz;
|
||||
private String zfbz;
|
||||
private String zfrq;
|
||||
|
||||
public String getDkfpsq_xh() {
|
||||
return this.dkfpsq_xh;
|
||||
}
|
||||
|
||||
public void setDkfpsq_xh(String dkfpsq_xh) {
|
||||
this.dkfpsq_xh = dkfpsq_xh;
|
||||
}
|
||||
|
||||
public String getDkfpzl_dm() {
|
||||
return this.dkfpzl_dm;
|
||||
}
|
||||
|
||||
public void setDkfpzl_dm(String dkfpzl_dm) {
|
||||
this.dkfpzl_dm = dkfpzl_dm;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
return this.sqrq;
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getOpenid() {
|
||||
return this.openid;
|
||||
}
|
||||
|
||||
public void setOpenid(String openid) {
|
||||
this.openid = openid;
|
||||
}
|
||||
|
||||
public String getFkfmc() {
|
||||
return this.fkfmc;
|
||||
}
|
||||
|
||||
public void setFkfmc(String fkfmc) {
|
||||
this.fkfmc = fkfmc;
|
||||
}
|
||||
|
||||
public String getFkfzjhm() {
|
||||
return this.fkfzjhm;
|
||||
}
|
||||
|
||||
public void setFkfzjhm(String fkfzjhm) {
|
||||
this.fkfzjhm = fkfzjhm;
|
||||
}
|
||||
|
||||
public String getFkfdz() {
|
||||
return this.fkfdz;
|
||||
}
|
||||
|
||||
public void setFkfdz(String fkfdz) {
|
||||
this.fkfdz = fkfdz;
|
||||
}
|
||||
|
||||
public String getFkfdh() {
|
||||
return this.fkfdh;
|
||||
}
|
||||
|
||||
public void setFkfdh(String fkfdh) {
|
||||
this.fkfdh = fkfdh;
|
||||
}
|
||||
|
||||
public String getFkfyhmc() {
|
||||
return this.fkfyhmc;
|
||||
}
|
||||
|
||||
public void setFkfyhmc(String fkfyhmc) {
|
||||
this.fkfyhmc = fkfyhmc;
|
||||
}
|
||||
|
||||
public String getFkfyhzh() {
|
||||
return this.fkfyhzh;
|
||||
}
|
||||
|
||||
public void setFkfyhzh(String fkfyhzh) {
|
||||
this.fkfyhzh = fkfyhzh;
|
||||
}
|
||||
|
||||
public String getSkfmc() {
|
||||
return this.skfmc;
|
||||
}
|
||||
|
||||
public void setSkfmc(String skfmc) {
|
||||
this.skfmc = skfmc;
|
||||
}
|
||||
|
||||
public String getSkfzjhm() {
|
||||
return this.skfzjhm;
|
||||
}
|
||||
|
||||
public void setSkfzjhm(String skfzjhm) {
|
||||
this.skfzjhm = skfzjhm;
|
||||
}
|
||||
|
||||
public String getSkfdz() {
|
||||
return this.skfdz;
|
||||
}
|
||||
|
||||
public void setSkfdz(String skfdz) {
|
||||
this.skfdz = skfdz;
|
||||
}
|
||||
|
||||
public String getSkfdh() {
|
||||
return this.skfdh;
|
||||
}
|
||||
|
||||
public void setSkfdh(String skfdh) {
|
||||
this.skfdh = skfdh;
|
||||
}
|
||||
|
||||
public String getSkfyhmc() {
|
||||
return this.skfyhmc;
|
||||
}
|
||||
|
||||
public void setSkfyhmc(String skfyhmc) {
|
||||
this.skfyhmc = skfyhmc;
|
||||
}
|
||||
|
||||
public String getSkfyhzh() {
|
||||
return this.skfyhzh;
|
||||
}
|
||||
|
||||
public void setSkfyhzh(String skfyhzh) {
|
||||
this.skfyhzh = skfyhzh;
|
||||
}
|
||||
|
||||
public String getKpje() {
|
||||
return this.kpje;
|
||||
}
|
||||
|
||||
public void setKpje(String kpje) {
|
||||
this.kpje = kpje;
|
||||
}
|
||||
|
||||
public String getHwlwfwmc() {
|
||||
return this.hwlwfwmc;
|
||||
}
|
||||
|
||||
public void setHwlwfwmc(String hwlwfwmc) {
|
||||
this.hwlwfwmc = hwlwfwmc;
|
||||
}
|
||||
|
||||
public String getSqdbh() {
|
||||
return this.sqdbh;
|
||||
}
|
||||
|
||||
public void setSqdbh(String sqdbh) {
|
||||
this.sqdbh = sqdbh;
|
||||
}
|
||||
|
||||
public String getSqrlx() {
|
||||
return this.sqrlx;
|
||||
}
|
||||
|
||||
public void setSqrlx(String sqrlx) {
|
||||
this.sqrlx = sqrlx;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getZfbz() {
|
||||
return this.zfbz;
|
||||
}
|
||||
|
||||
public void setZfbz(String zfbz) {
|
||||
this.zfbz = zfbz;
|
||||
}
|
||||
|
||||
public String getZfrq() {
|
||||
return this.zfrq;
|
||||
}
|
||||
|
||||
public void setZfrq(String zfrq) {
|
||||
this.zfrq = zfrq;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbPtfpFpDkfpsqZb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String dkfpsqXh;
|
||||
private String xh;
|
||||
private String pm;
|
||||
private String gg;
|
||||
private String dw;
|
||||
private String sl;
|
||||
private String dj;
|
||||
private String je;
|
||||
private String sli;
|
||||
private String se;
|
||||
|
||||
public String getPm() {
|
||||
return this.pm;
|
||||
}
|
||||
|
||||
public void setPm(String pm) {
|
||||
this.pm = pm;
|
||||
}
|
||||
|
||||
public String getGg() {
|
||||
return this.gg;
|
||||
}
|
||||
|
||||
public void setGg(String gg) {
|
||||
this.gg = gg;
|
||||
}
|
||||
|
||||
public String getDw() {
|
||||
return this.dw;
|
||||
}
|
||||
|
||||
public void setDw(String dw) {
|
||||
this.dw = dw;
|
||||
}
|
||||
|
||||
public String getSl() {
|
||||
return this.sl;
|
||||
}
|
||||
|
||||
public void setSl(String sl) {
|
||||
this.sl = sl;
|
||||
}
|
||||
|
||||
public String getDj() {
|
||||
return this.dj;
|
||||
}
|
||||
|
||||
public void setDj(String dj) {
|
||||
this.dj = dj;
|
||||
}
|
||||
|
||||
public String getJe() {
|
||||
return this.je;
|
||||
}
|
||||
|
||||
public void setJe(String je) {
|
||||
this.je = je;
|
||||
}
|
||||
|
||||
public String getSli() {
|
||||
return this.sli;
|
||||
}
|
||||
|
||||
public void setSli(String sli) {
|
||||
this.sli = sli;
|
||||
}
|
||||
|
||||
public String getSe() {
|
||||
return this.se;
|
||||
}
|
||||
|
||||
public void setSe(String se) {
|
||||
this.se = se;
|
||||
}
|
||||
|
||||
public String getDkfpsqXh() {
|
||||
return this.dkfpsqXh;
|
||||
}
|
||||
|
||||
public void setDkfpsqXh(String dkfpsqXh) {
|
||||
this.dkfpsqXh = dkfpsqXh;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbWebjkPublic
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String pclXh;
|
||||
private String ywxhXh;
|
||||
private String xh;
|
||||
private String nr;
|
||||
|
||||
public String getPclXh() {
|
||||
return this.pclXh;
|
||||
}
|
||||
|
||||
public void setPclXh(String pclXh) {
|
||||
this.pclXh = pclXh;
|
||||
}
|
||||
|
||||
public String getYwxhXh() {
|
||||
return this.ywxhXh;
|
||||
}
|
||||
|
||||
public void setYwxhXh(String ywxhXh) {
|
||||
this.ywxhXh = ywxhXh;
|
||||
}
|
||||
|
||||
public String getNr() {
|
||||
return this.nr;
|
||||
}
|
||||
|
||||
public void setNr(String nr) {
|
||||
this.nr = nr;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbWebjkPublic2
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String pclXh;
|
||||
private String ywxhXh;
|
||||
private String col_1;
|
||||
private String col_2;
|
||||
|
||||
public String getPclXh() {
|
||||
return this.pclXh;
|
||||
}
|
||||
|
||||
public void setPclXh(String pclXh) {
|
||||
this.pclXh = pclXh;
|
||||
}
|
||||
|
||||
public String getYwxhXh() {
|
||||
return this.ywxhXh;
|
||||
}
|
||||
|
||||
public void setYwxhXh(String ywxhXh) {
|
||||
this.ywxhXh = ywxhXh;
|
||||
}
|
||||
|
||||
public String getCol_1() {
|
||||
return this.col_1;
|
||||
}
|
||||
|
||||
public void setCol_1(String col_1) {
|
||||
this.col_1 = col_1;
|
||||
}
|
||||
|
||||
public String getCol_2() {
|
||||
return this.col_2;
|
||||
}
|
||||
|
||||
public void setCol_2(String col_2) {
|
||||
this.col_2 = col_2;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,353 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbZhdjTwxxSave
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String pcl_xh;
|
||||
private String cjsj;
|
||||
private String swjgdm;
|
||||
private String swrydm;
|
||||
private String gnmk_dm;
|
||||
private String twxxlx_dm;
|
||||
private String ywid;
|
||||
private String title;
|
||||
private String source;
|
||||
private String fbrq;
|
||||
private String fbsj;
|
||||
private String content;
|
||||
private String htmlbz;
|
||||
private String dd;
|
||||
private String sj;
|
||||
private String sj2;
|
||||
private String bz;
|
||||
private String zt;
|
||||
private String lb;
|
||||
private String fsrlx;
|
||||
private String fsr_czy_dm;
|
||||
private String fsr_czy_mc;
|
||||
private String fsr_dw_dm;
|
||||
private String fsr_dw_mc;
|
||||
private String sfyxdz;
|
||||
private String sfyxpl;
|
||||
private String sfyxhf;
|
||||
private String slpic;
|
||||
private String picurl;
|
||||
private String bz1;
|
||||
private String bz2;
|
||||
private String bz3;
|
||||
private String xsmb_dm;
|
||||
private String fjxx;
|
||||
private String conpicurl;
|
||||
private String jsrlx;
|
||||
private String jsrlist;
|
||||
|
||||
public String getPcl_xh() {
|
||||
return this.pcl_xh;
|
||||
}
|
||||
|
||||
public void setPcl_xh(String pcl_xh) {
|
||||
this.pcl_xh = pcl_xh;
|
||||
}
|
||||
|
||||
public String getCjsj() {
|
||||
return this.cjsj;
|
||||
}
|
||||
|
||||
public void setCjsj(String cjsj) {
|
||||
this.cjsj = cjsj;
|
||||
}
|
||||
|
||||
public String getSwjgdm() {
|
||||
return this.swjgdm;
|
||||
}
|
||||
|
||||
public void setSwjgdm(String swjgdm) {
|
||||
this.swjgdm = swjgdm;
|
||||
}
|
||||
|
||||
public String getSwrydm() {
|
||||
return this.swrydm;
|
||||
}
|
||||
|
||||
public void setSwrydm(String swrydm) {
|
||||
this.swrydm = swrydm;
|
||||
}
|
||||
|
||||
public String getGnmk_dm() {
|
||||
return this.gnmk_dm;
|
||||
}
|
||||
|
||||
public void setGnmk_dm(String gnmk_dm) {
|
||||
this.gnmk_dm = gnmk_dm;
|
||||
}
|
||||
|
||||
public String getTwxxlx_dm() {
|
||||
return this.twxxlx_dm;
|
||||
}
|
||||
|
||||
public void setTwxxlx_dm(String twxxlx_dm) {
|
||||
this.twxxlx_dm = twxxlx_dm;
|
||||
}
|
||||
|
||||
public String getYwid() {
|
||||
return this.ywid;
|
||||
}
|
||||
|
||||
public void setYwid(String ywid) {
|
||||
this.ywid = ywid;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getSource() {
|
||||
return this.source;
|
||||
}
|
||||
|
||||
public void setSource(String source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public String getFbrq() {
|
||||
return this.fbrq;
|
||||
}
|
||||
|
||||
public void setFbrq(String fbrq) {
|
||||
this.fbrq = fbrq;
|
||||
}
|
||||
|
||||
public String getFbsj() {
|
||||
return this.fbsj;
|
||||
}
|
||||
|
||||
public void setFbsj(String fbsj) {
|
||||
this.fbsj = fbsj;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return this.content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getHtmlbz() {
|
||||
return this.htmlbz;
|
||||
}
|
||||
|
||||
public void setHtmlbz(String htmlbz) {
|
||||
this.htmlbz = htmlbz;
|
||||
}
|
||||
|
||||
public String getDd() {
|
||||
return this.dd;
|
||||
}
|
||||
|
||||
public void setDd(String dd) {
|
||||
this.dd = dd;
|
||||
}
|
||||
|
||||
public String getSj() {
|
||||
return this.sj;
|
||||
}
|
||||
|
||||
public void setSj(String sj) {
|
||||
this.sj = sj;
|
||||
}
|
||||
|
||||
public String getSj2() {
|
||||
return this.sj2;
|
||||
}
|
||||
|
||||
public void setSj2(String sj2) {
|
||||
this.sj2 = sj2;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getZt() {
|
||||
return this.zt;
|
||||
}
|
||||
|
||||
public void setZt(String zt) {
|
||||
this.zt = zt;
|
||||
}
|
||||
|
||||
public String getLb() {
|
||||
return this.lb;
|
||||
}
|
||||
|
||||
public void setLb(String lb) {
|
||||
this.lb = lb;
|
||||
}
|
||||
|
||||
public String getFsrlx() {
|
||||
return this.fsrlx;
|
||||
}
|
||||
|
||||
public void setFsrlx(String fsrlx) {
|
||||
this.fsrlx = fsrlx;
|
||||
}
|
||||
|
||||
public String getFsr_czy_dm() {
|
||||
return this.fsr_czy_dm;
|
||||
}
|
||||
|
||||
public void setFsr_czy_dm(String fsr_czy_dm) {
|
||||
this.fsr_czy_dm = fsr_czy_dm;
|
||||
}
|
||||
|
||||
public String getFsr_czy_mc() {
|
||||
return this.fsr_czy_mc;
|
||||
}
|
||||
|
||||
public void setFsr_czy_mc(String fsr_czy_mc) {
|
||||
this.fsr_czy_mc = fsr_czy_mc;
|
||||
}
|
||||
|
||||
public String getFsr_dw_dm() {
|
||||
return this.fsr_dw_dm;
|
||||
}
|
||||
|
||||
public void setFsr_dw_dm(String fsr_dw_dm) {
|
||||
this.fsr_dw_dm = fsr_dw_dm;
|
||||
}
|
||||
|
||||
public String getFsr_dw_mc() {
|
||||
return this.fsr_dw_mc;
|
||||
}
|
||||
|
||||
public void setFsr_dw_mc(String fsr_dw_mc) {
|
||||
this.fsr_dw_mc = fsr_dw_mc;
|
||||
}
|
||||
|
||||
public String getSfyxdz() {
|
||||
return this.sfyxdz;
|
||||
}
|
||||
|
||||
public void setSfyxdz(String sfyxdz) {
|
||||
this.sfyxdz = sfyxdz;
|
||||
}
|
||||
|
||||
public String getSfyxpl() {
|
||||
return this.sfyxpl;
|
||||
}
|
||||
|
||||
public void setSfyxpl(String sfyxpl) {
|
||||
this.sfyxpl = sfyxpl;
|
||||
}
|
||||
|
||||
public String getSfyxhf() {
|
||||
return this.sfyxhf;
|
||||
}
|
||||
|
||||
public void setSfyxhf(String sfyxhf) {
|
||||
this.sfyxhf = sfyxhf;
|
||||
}
|
||||
|
||||
public String getSlpic() {
|
||||
return this.slpic;
|
||||
}
|
||||
|
||||
public void setSlpic(String slpic) {
|
||||
this.slpic = slpic;
|
||||
}
|
||||
|
||||
public String getPicurl() {
|
||||
return this.picurl;
|
||||
}
|
||||
|
||||
public void setPicurl(String picurl) {
|
||||
this.picurl = picurl;
|
||||
}
|
||||
|
||||
public String getBz1() {
|
||||
return this.bz1;
|
||||
}
|
||||
|
||||
public void setBz1(String bz1) {
|
||||
this.bz1 = bz1;
|
||||
}
|
||||
|
||||
public String getBz2() {
|
||||
return this.bz2;
|
||||
}
|
||||
|
||||
public void setBz2(String bz2) {
|
||||
this.bz2 = bz2;
|
||||
}
|
||||
|
||||
public String getBz3() {
|
||||
return this.bz3;
|
||||
}
|
||||
|
||||
public void setBz3(String bz3) {
|
||||
this.bz3 = bz3;
|
||||
}
|
||||
|
||||
public String getXsmb_dm() {
|
||||
return this.xsmb_dm;
|
||||
}
|
||||
|
||||
public void setXsmb_dm(String xsmb_dm) {
|
||||
this.xsmb_dm = xsmb_dm;
|
||||
}
|
||||
|
||||
public String getFjxx() {
|
||||
return this.fjxx;
|
||||
}
|
||||
|
||||
public void setFjxx(String fjxx) {
|
||||
this.fjxx = fjxx;
|
||||
}
|
||||
|
||||
public String getConpicurl() {
|
||||
return this.conpicurl;
|
||||
}
|
||||
|
||||
public void setConpicurl(String conpicurl) {
|
||||
this.conpicurl = conpicurl;
|
||||
}
|
||||
|
||||
public String getJsrlx() {
|
||||
return this.jsrlx;
|
||||
}
|
||||
|
||||
public void setJsrlx(String jsrlx) {
|
||||
this.jsrlx = jsrlx;
|
||||
}
|
||||
|
||||
public String getJsrlist() {
|
||||
return this.jsrlist;
|
||||
}
|
||||
|
||||
public void setJsrlist(String jsrlist) {
|
||||
this.jsrlist = jsrlist;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class LsbZhdjWjcj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String pcl_xh;
|
||||
private String wjdctp_xh;
|
||||
private String wtxh;
|
||||
private String daxxxh;
|
||||
private String nrblxx;
|
||||
|
||||
public String getPcl_xh() {
|
||||
return this.pcl_xh;
|
||||
}
|
||||
|
||||
public void setPcl_xh(String pcl_xh) {
|
||||
this.pcl_xh = pcl_xh;
|
||||
}
|
||||
|
||||
public String getWjdctp_xh() {
|
||||
return this.wjdctp_xh;
|
||||
}
|
||||
|
||||
public void setWjdctp_xh(String wjdctp_xh) {
|
||||
this.wjdctp_xh = wjdctp_xh;
|
||||
}
|
||||
|
||||
public String getWtxh() {
|
||||
return this.wtxh;
|
||||
}
|
||||
|
||||
public void setWtxh(String wtxh) {
|
||||
this.wtxh = wtxh;
|
||||
}
|
||||
|
||||
public String getDaxxxh() {
|
||||
return this.daxxxh;
|
||||
}
|
||||
|
||||
public void setDaxxxh(String daxxxh) {
|
||||
this.daxxxh = daxxxh;
|
||||
}
|
||||
|
||||
public String getNrblxx() {
|
||||
return this.nrblxx;
|
||||
}
|
||||
|
||||
public void setNrblxx(String nrblxx) {
|
||||
this.nrblxx = nrblxx;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class NsfwStpxPxkcBmmd
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String pxkcbmXh;
|
||||
private String grbz;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String xm;
|
||||
private String sjhm;
|
||||
private String yxdz;
|
||||
private String mdqrbz;
|
||||
private String qdrq;
|
||||
private String qdbz;
|
||||
private String yxbz = "Y";
|
||||
private String pxkcXh;
|
||||
private String bmfs;
|
||||
private String openId;
|
||||
|
||||
public String getGrbz() {
|
||||
return this.grbz;
|
||||
}
|
||||
|
||||
public void setGrbz(String grbz) {
|
||||
this.grbz = grbz;
|
||||
}
|
||||
|
||||
public String getMdqrbz() {
|
||||
return this.mdqrbz;
|
||||
}
|
||||
|
||||
public void setMdqrbz(String mdqrbz) {
|
||||
this.mdqrbz = mdqrbz;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getPxkcbmXh() {
|
||||
return this.pxkcbmXh;
|
||||
}
|
||||
|
||||
public void setPxkcbmXh(String pxkcbmXh) {
|
||||
this.pxkcbmXh = pxkcbmXh;
|
||||
}
|
||||
|
||||
public String getPxkcXh() {
|
||||
return this.pxkcXh;
|
||||
}
|
||||
|
||||
public void setPxkcXh(String pxkcXh) {
|
||||
this.pxkcXh = pxkcXh;
|
||||
}
|
||||
|
||||
public String getQdbz() {
|
||||
return this.qdbz;
|
||||
}
|
||||
|
||||
public void setQdbz(String qdbz) {
|
||||
this.qdbz = qdbz;
|
||||
}
|
||||
|
||||
public String getQdrq() {
|
||||
return this.qdrq;
|
||||
}
|
||||
|
||||
public void setQdrq(String qdrq) {
|
||||
this.qdrq = qdrq;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getYxdz() {
|
||||
return this.yxdz;
|
||||
}
|
||||
|
||||
public void setYxdz(String yxdz) {
|
||||
this.yxdz = yxdz;
|
||||
}
|
||||
|
||||
public String getBmfs() {
|
||||
return this.bmfs;
|
||||
}
|
||||
|
||||
public void setBmfs(String bmfs) {
|
||||
this.bmfs = bmfs;
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return this.openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class NsfwStpxPxkcPj
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String pxkcbmXh;
|
||||
private String pxkcXh;
|
||||
private String pjwtDm;
|
||||
private String xxxh;
|
||||
private String pjrq;
|
||||
private String pjfs;
|
||||
private String bz;
|
||||
|
||||
public String getPjfs() {
|
||||
return this.pjfs;
|
||||
}
|
||||
|
||||
public void setPjfs(String pjfs) {
|
||||
this.pjfs = pjfs;
|
||||
}
|
||||
|
||||
public String getPjrq() {
|
||||
return this.pjrq;
|
||||
}
|
||||
|
||||
public void setPjrq(String pjrq) {
|
||||
this.pjrq = pjrq;
|
||||
}
|
||||
|
||||
public String getPjwtDm() {
|
||||
return this.pjwtDm;
|
||||
}
|
||||
|
||||
public void setPjwtDm(String pjwtDm) {
|
||||
this.pjwtDm = pjwtDm;
|
||||
}
|
||||
|
||||
public String getPxkcbmXh() {
|
||||
return this.pxkcbmXh;
|
||||
}
|
||||
|
||||
public void setPxkcbmXh(String pxkcbmXh) {
|
||||
this.pxkcbmXh = pxkcbmXh;
|
||||
}
|
||||
|
||||
public String getPxkcXh() {
|
||||
return this.pxkcXh;
|
||||
}
|
||||
|
||||
public void setPxkcXh(String pxkcXh) {
|
||||
this.pxkcXh = pxkcXh;
|
||||
}
|
||||
|
||||
public String getXxxh() {
|
||||
return this.xxxh;
|
||||
}
|
||||
|
||||
public void setXxxh(String xxxh) {
|
||||
this.xxxh = xxxh;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class NsfwStpxPxkcYjjy
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String pxkcbmXh;
|
||||
private String pxkcXh;
|
||||
private String yjjy;
|
||||
private String djrq;
|
||||
|
||||
public String getDjrq() {
|
||||
return this.djrq;
|
||||
}
|
||||
|
||||
public void setDjrq(String djrq) {
|
||||
this.djrq = djrq;
|
||||
}
|
||||
|
||||
public String getPxkcbmXh() {
|
||||
return this.pxkcbmXh;
|
||||
}
|
||||
|
||||
public void setPxkcbmXh(String pxkcbmXh) {
|
||||
this.pxkcbmXh = pxkcbmXh;
|
||||
}
|
||||
|
||||
public String getPxkcXh() {
|
||||
return this.pxkcXh;
|
||||
}
|
||||
|
||||
public void setPxkcXh(String pxkcXh) {
|
||||
this.pxkcXh = pxkcXh;
|
||||
}
|
||||
|
||||
public String getYjjy() {
|
||||
return this.yjjy;
|
||||
}
|
||||
|
||||
public void setYjjy(String yjjy) {
|
||||
this.yjjy = yjjy;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class NsfwWsgpFplgsq
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String fpzlDm;
|
||||
private String lgsl;
|
||||
private String dw;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getFpzlDm() {
|
||||
return this.fpzlDm;
|
||||
}
|
||||
|
||||
public void setFpzlDm(String fpzlDm) {
|
||||
this.fpzlDm = fpzlDm;
|
||||
}
|
||||
|
||||
public String getLgsl() {
|
||||
return this.lgsl;
|
||||
}
|
||||
|
||||
public void setLgsl(String lgsl) {
|
||||
this.lgsl = lgsl;
|
||||
}
|
||||
|
||||
public String getDw() {
|
||||
return this.dw;
|
||||
}
|
||||
|
||||
public void setDw(String dw) {
|
||||
this.dw = dw;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,155 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class NsfwWsgpFpyjsq
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String fpzlDm;
|
||||
private String fpDm;
|
||||
private String fpqh;
|
||||
private String fpzh;
|
||||
private String kprqQ;
|
||||
private String kprqZ;
|
||||
private String kpje;
|
||||
private String se;
|
||||
private String fpYjjgDm;
|
||||
private String sfscdzxx;
|
||||
private String yjbz;
|
||||
private String yjCzryDm;
|
||||
private String czrq;
|
||||
private String yjzt;
|
||||
private String errMess;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getFpzlDm() {
|
||||
return this.fpzlDm;
|
||||
}
|
||||
|
||||
public void setFpzlDm(String fpzlDm) {
|
||||
this.fpzlDm = fpzlDm;
|
||||
}
|
||||
|
||||
public String getFpDm() {
|
||||
return this.fpDm;
|
||||
}
|
||||
|
||||
public void setFpDm(String fpDm) {
|
||||
this.fpDm = fpDm;
|
||||
}
|
||||
|
||||
public String getFpqh() {
|
||||
return this.fpqh;
|
||||
}
|
||||
|
||||
public void setFpqh(String fpqh) {
|
||||
this.fpqh = fpqh;
|
||||
}
|
||||
|
||||
public String getFpzh() {
|
||||
return this.fpzh;
|
||||
}
|
||||
|
||||
public void setFpzh(String fpzh) {
|
||||
this.fpzh = fpzh;
|
||||
}
|
||||
|
||||
public String getKprqQ() {
|
||||
return this.kprqQ.replace("-", "");
|
||||
}
|
||||
|
||||
public void setKprqQ(String kprqQ) {
|
||||
this.kprqQ = kprqQ;
|
||||
}
|
||||
|
||||
public String getKprqZ() {
|
||||
return this.kprqZ.replace("-", "");
|
||||
}
|
||||
|
||||
public void setKprqZ(String kprqZ) {
|
||||
this.kprqZ = kprqZ;
|
||||
}
|
||||
|
||||
public String getKpje() {
|
||||
return this.kpje;
|
||||
}
|
||||
|
||||
public void setKpje(String kpje) {
|
||||
this.kpje = kpje;
|
||||
}
|
||||
|
||||
public String getSe() {
|
||||
return this.se;
|
||||
}
|
||||
|
||||
public void setSe(String se) {
|
||||
this.se = se;
|
||||
}
|
||||
|
||||
public String getFpYjjgDm() {
|
||||
return this.fpYjjgDm;
|
||||
}
|
||||
|
||||
public void setFpYjjgDm(String fpYjjgDm) {
|
||||
this.fpYjjgDm = fpYjjgDm;
|
||||
}
|
||||
|
||||
public String getSfscdzxx() {
|
||||
return this.sfscdzxx;
|
||||
}
|
||||
|
||||
public void setSfscdzxx(String sfscdzxx) {
|
||||
this.sfscdzxx = sfscdzxx;
|
||||
}
|
||||
|
||||
public String getYjbz() {
|
||||
return this.yjbz;
|
||||
}
|
||||
|
||||
public void setYjbz(String yjbz) {
|
||||
this.yjbz = yjbz;
|
||||
}
|
||||
|
||||
public String getYjCzryDm() {
|
||||
return this.yjCzryDm;
|
||||
}
|
||||
|
||||
public void setYjCzryDm(String yjCzryDm) {
|
||||
this.yjCzryDm = yjCzryDm;
|
||||
}
|
||||
|
||||
public String getCzrq() {
|
||||
return this.czrq;
|
||||
}
|
||||
|
||||
public void setCzrq(String czrq) {
|
||||
this.czrq = czrq;
|
||||
}
|
||||
|
||||
public String getYjzt() {
|
||||
return this.yjzt;
|
||||
}
|
||||
|
||||
public void setYjzt(String yjzt) {
|
||||
this.yjzt = yjzt;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,200 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class NsfwWsgpSqzb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String wsgpSqlxDm;
|
||||
private String wsgpSqlbDm;
|
||||
private String nsrsbh;
|
||||
private String nsrdzdah;
|
||||
private String sqrq;
|
||||
private String sqsj;
|
||||
private String gpyxm;
|
||||
private String gpysfzm;
|
||||
private String appsqXh;
|
||||
private String kddh;
|
||||
private String wsgpSqdbh;
|
||||
private String swjgDm;
|
||||
private String bsdtDjxh;
|
||||
private String sljg;
|
||||
private String byfsyy;
|
||||
private String spqrbz;
|
||||
private String spr;
|
||||
private String sprq;
|
||||
private String lgbDybz;
|
||||
private String kddQsbz;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getWsgpSqlxDm() {
|
||||
return this.wsgpSqlxDm;
|
||||
}
|
||||
|
||||
public void setWsgpSqlxDm(String wsgpSqlxDm) {
|
||||
this.wsgpSqlxDm = wsgpSqlxDm;
|
||||
}
|
||||
|
||||
public String getWsgpSqlbDm() {
|
||||
return this.wsgpSqlbDm;
|
||||
}
|
||||
|
||||
public void setWsgpSqlbDm(String wsgpSqlbDm) {
|
||||
this.wsgpSqlbDm = wsgpSqlbDm;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrdzdah() {
|
||||
return this.nsrdzdah;
|
||||
}
|
||||
|
||||
public void setNsrdzdah(String nsrdzdah) {
|
||||
this.nsrdzdah = nsrdzdah;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
return this.sqrq;
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getSqsj() {
|
||||
return this.sqsj;
|
||||
}
|
||||
|
||||
public void setSqsj(String sqsj) {
|
||||
this.sqsj = sqsj;
|
||||
}
|
||||
|
||||
public String getGpyxm() {
|
||||
return this.gpyxm;
|
||||
}
|
||||
|
||||
public void setGpyxm(String gpyxm) {
|
||||
this.gpyxm = gpyxm;
|
||||
}
|
||||
|
||||
public String getGpysfzm() {
|
||||
return this.gpysfzm;
|
||||
}
|
||||
|
||||
public void setGpysfzm(String gpysfzm) {
|
||||
this.gpysfzm = gpysfzm;
|
||||
}
|
||||
|
||||
public String getAppsqXh() {
|
||||
return this.appsqXh;
|
||||
}
|
||||
|
||||
public void setAppsqXh(String appsqXh) {
|
||||
this.appsqXh = appsqXh;
|
||||
}
|
||||
|
||||
public String getKddh() {
|
||||
return this.kddh;
|
||||
}
|
||||
|
||||
public void setKddh(String kddh) {
|
||||
this.kddh = kddh;
|
||||
}
|
||||
|
||||
public String getWsgpSqdbh() {
|
||||
return this.wsgpSqdbh;
|
||||
}
|
||||
|
||||
public void setWsgpSqdbh(String wsgpSqdbh) {
|
||||
this.wsgpSqdbh = wsgpSqdbh;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public String getSljg() {
|
||||
return this.sljg;
|
||||
}
|
||||
|
||||
public void setSljg(String sljg) {
|
||||
this.sljg = sljg;
|
||||
}
|
||||
|
||||
public String getByfsyy() {
|
||||
return this.byfsyy;
|
||||
}
|
||||
|
||||
public void setByfsyy(String byfsyy) {
|
||||
this.byfsyy = byfsyy;
|
||||
}
|
||||
|
||||
public String getSpqrbz() {
|
||||
return this.spqrbz;
|
||||
}
|
||||
|
||||
public void setSpqrbz(String spqrbz) {
|
||||
this.spqrbz = spqrbz;
|
||||
}
|
||||
|
||||
public String getSpr() {
|
||||
return this.spr;
|
||||
}
|
||||
|
||||
public void setSpr(String spr) {
|
||||
this.spr = spr;
|
||||
}
|
||||
|
||||
public String getSprq() {
|
||||
return this.sprq;
|
||||
}
|
||||
|
||||
public void setSprq(String sprq) {
|
||||
this.sprq = sprq;
|
||||
}
|
||||
|
||||
public String getLgbDybz() {
|
||||
return this.lgbDybz;
|
||||
}
|
||||
|
||||
public void setLgbDybz(String lgbDybz) {
|
||||
this.lgbDybz = lgbDybz;
|
||||
}
|
||||
|
||||
public String getKddQsbz() {
|
||||
return this.kddQsbz;
|
||||
}
|
||||
|
||||
public void setKddQsbz(String kddQsbz) {
|
||||
this.kddQsbz = kddQsbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,218 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class PtfpSpJkxx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String jkxh;
|
||||
private String gdslb;
|
||||
private String swjg_dm;
|
||||
private String djxh;
|
||||
private String nsrsbh;
|
||||
private String zjlx;
|
||||
private String sfzhm;
|
||||
private String xm;
|
||||
private String skrdm;
|
||||
private String skrmc;
|
||||
private String sbbs;
|
||||
private String sehj;
|
||||
private String jkfs;
|
||||
private String jkpzxh;
|
||||
private String jkrq;
|
||||
private String cjrq;
|
||||
private String zfbz;
|
||||
private String sfrdm;
|
||||
private String zrrmc;
|
||||
private String zfsj;
|
||||
private String hkbz;
|
||||
private String xtsphm;
|
||||
private String hksj;
|
||||
|
||||
public String getJkxh() {
|
||||
return this.jkxh;
|
||||
}
|
||||
|
||||
public void setJkxh(String jkxh) {
|
||||
this.jkxh = jkxh;
|
||||
}
|
||||
|
||||
public String getGdslb() {
|
||||
return this.gdslb;
|
||||
}
|
||||
|
||||
public void setGdslb(String gdslb) {
|
||||
this.gdslb = gdslb;
|
||||
}
|
||||
|
||||
public String getSwjg_dm() {
|
||||
return this.swjg_dm;
|
||||
}
|
||||
|
||||
public void setSwjg_dm(String swjg_dm) {
|
||||
this.swjg_dm = swjg_dm;
|
||||
}
|
||||
|
||||
public String getDjxh() {
|
||||
return this.djxh;
|
||||
}
|
||||
|
||||
public void setDjxh(String djxh) {
|
||||
this.djxh = djxh;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getZjlx() {
|
||||
return this.zjlx;
|
||||
}
|
||||
|
||||
public void setZjlx(String zjlx) {
|
||||
this.zjlx = zjlx;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getSkrdm() {
|
||||
return this.skrdm;
|
||||
}
|
||||
|
||||
public void setSkrdm(String skrdm) {
|
||||
this.skrdm = skrdm;
|
||||
}
|
||||
|
||||
public String getSkrmc() {
|
||||
return this.skrmc;
|
||||
}
|
||||
|
||||
public void setSkrmc(String skrmc) {
|
||||
this.skrmc = skrmc;
|
||||
}
|
||||
|
||||
public String getSbbs() {
|
||||
return this.sbbs;
|
||||
}
|
||||
|
||||
public void setSbbs(String sbbs) {
|
||||
this.sbbs = sbbs;
|
||||
}
|
||||
|
||||
public String getSehj() {
|
||||
return this.sehj;
|
||||
}
|
||||
|
||||
public void setSehj(String sehj) {
|
||||
this.sehj = sehj;
|
||||
}
|
||||
|
||||
public String getJkfs() {
|
||||
return this.jkfs;
|
||||
}
|
||||
|
||||
public void setJkfs(String jkfs) {
|
||||
this.jkfs = jkfs;
|
||||
}
|
||||
|
||||
public String getJkpzxh() {
|
||||
return this.jkpzxh;
|
||||
}
|
||||
|
||||
public void setJkpzxh(String jkpzxh) {
|
||||
this.jkpzxh = jkpzxh;
|
||||
}
|
||||
|
||||
public String getJkrq() {
|
||||
return this.jkrq;
|
||||
}
|
||||
|
||||
public void setJkrq(String jkrq) {
|
||||
this.jkrq = jkrq;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getZfbz() {
|
||||
return this.zfbz;
|
||||
}
|
||||
|
||||
public void setZfbz(String zfbz) {
|
||||
this.zfbz = zfbz;
|
||||
}
|
||||
|
||||
public String getSfrdm() {
|
||||
return this.sfrdm;
|
||||
}
|
||||
|
||||
public void setSfrdm(String sfrdm) {
|
||||
this.sfrdm = sfrdm;
|
||||
}
|
||||
|
||||
public String getZrrmc() {
|
||||
return this.zrrmc;
|
||||
}
|
||||
|
||||
public void setZrrmc(String zrrmc) {
|
||||
this.zrrmc = zrrmc;
|
||||
}
|
||||
|
||||
public String getZfsj() {
|
||||
return this.zfsj;
|
||||
}
|
||||
|
||||
public void setZfsj(String zfsj) {
|
||||
this.zfsj = zfsj;
|
||||
}
|
||||
|
||||
public String getHkbz() {
|
||||
return this.hkbz;
|
||||
}
|
||||
|
||||
public void setHkbz(String hkbz) {
|
||||
this.hkbz = hkbz;
|
||||
}
|
||||
|
||||
public String getXtsphm() {
|
||||
return this.xtsphm;
|
||||
}
|
||||
|
||||
public void setXtsphm(String xtsphm) {
|
||||
this.xtsphm = xtsphm;
|
||||
}
|
||||
|
||||
public String getHksj() {
|
||||
return this.hksj;
|
||||
}
|
||||
|
||||
public void setHksj(String hksj) {
|
||||
this.hksj = hksj;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class PtfpSpJkxxMx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String jkxh;
|
||||
private String zsxm_dm;
|
||||
private String zspm_dm;
|
||||
private String sli;
|
||||
private String se;
|
||||
|
||||
public String getJkxh() {
|
||||
return this.jkxh;
|
||||
}
|
||||
|
||||
public void setJkxh(String jkxh) {
|
||||
this.jkxh = jkxh;
|
||||
}
|
||||
|
||||
public String getZsxm_dm() {
|
||||
return this.zsxm_dm;
|
||||
}
|
||||
|
||||
public void setZsxm_dm(String zsxm_dm) {
|
||||
this.zsxm_dm = zsxm_dm;
|
||||
}
|
||||
|
||||
public String getZspm_dm() {
|
||||
return this.zspm_dm;
|
||||
}
|
||||
|
||||
public void setZspm_dm(String zspm_dm) {
|
||||
this.zspm_dm = zspm_dm;
|
||||
}
|
||||
|
||||
public String getSli() {
|
||||
return this.sli;
|
||||
}
|
||||
|
||||
public void setSli(String sli) {
|
||||
this.sli = sli;
|
||||
}
|
||||
|
||||
public String getSe() {
|
||||
return this.se;
|
||||
}
|
||||
|
||||
public void setSe(String se) {
|
||||
this.se = se;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,128 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwHd
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String hddj_xh;
|
||||
private String swjg_dm;
|
||||
private String fqr_swry_dm;
|
||||
private String fqrq;
|
||||
private String hdnr;
|
||||
private String hdkssj;
|
||||
private String hdjssj;
|
||||
private String yxbz;
|
||||
private String jsdxbz;
|
||||
private String pl_sl;
|
||||
private String z_zl;
|
||||
private String cyry_sl;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getHddj_xh() {
|
||||
return this.hddj_xh;
|
||||
}
|
||||
|
||||
public void setHddj_xh(String hddj_xh) {
|
||||
this.hddj_xh = hddj_xh;
|
||||
}
|
||||
|
||||
public String getSwjg_dm() {
|
||||
return this.swjg_dm;
|
||||
}
|
||||
|
||||
public void setSwjg_dm(String swjg_dm) {
|
||||
this.swjg_dm = swjg_dm;
|
||||
}
|
||||
|
||||
public String getFqr_swry_dm() {
|
||||
return this.fqr_swry_dm;
|
||||
}
|
||||
|
||||
public void setFqr_swry_dm(String fqr_swry_dm) {
|
||||
this.fqr_swry_dm = fqr_swry_dm;
|
||||
}
|
||||
|
||||
public String getFqrq() {
|
||||
return this.fqrq;
|
||||
}
|
||||
|
||||
public void setFqrq(String fqrq) {
|
||||
this.fqrq = fqrq;
|
||||
}
|
||||
|
||||
public String getHdnr() {
|
||||
return this.hdnr;
|
||||
}
|
||||
|
||||
public void setHdnr(String hdnr) {
|
||||
this.hdnr = hdnr;
|
||||
}
|
||||
|
||||
public String getHdkssj() {
|
||||
return this.hdkssj;
|
||||
}
|
||||
|
||||
public void setHdkssj(String hdkssj) {
|
||||
this.hdkssj = hdkssj;
|
||||
}
|
||||
|
||||
public String getHdjssj() {
|
||||
return this.hdjssj;
|
||||
}
|
||||
|
||||
public void setHdjssj(String hdjssj) {
|
||||
this.hdjssj = hdjssj;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getJsdxbz() {
|
||||
return this.jsdxbz;
|
||||
}
|
||||
|
||||
public void setJsdxbz(String jsdxbz) {
|
||||
this.jsdxbz = jsdxbz;
|
||||
}
|
||||
|
||||
public String getPl_sl() {
|
||||
return this.pl_sl;
|
||||
}
|
||||
|
||||
public void setPl_sl(String pl_sl) {
|
||||
this.pl_sl = pl_sl;
|
||||
}
|
||||
|
||||
public String getZ_zl() {
|
||||
return this.z_zl;
|
||||
}
|
||||
|
||||
public void setZ_zl(String z_zl) {
|
||||
this.z_zl = z_zl;
|
||||
}
|
||||
|
||||
public String getCyry_sl() {
|
||||
return this.cyry_sl;
|
||||
}
|
||||
|
||||
public void setCyry_sl(String cyry_sl) {
|
||||
this.cyry_sl = cyry_sl;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwHdBm
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String hddj_xh;
|
||||
private String swbm_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getHddj_xh() {
|
||||
return this.hddj_xh;
|
||||
}
|
||||
|
||||
public void setHddj_xh(String hddj_xh) {
|
||||
this.hddj_xh = hddj_xh;
|
||||
}
|
||||
|
||||
public String getSwbm_dm() {
|
||||
return this.swbm_dm;
|
||||
}
|
||||
|
||||
public void setSwbm_dm(String swbm_dm) {
|
||||
this.swbm_dm = swbm_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwHdFj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String hddj_xh;
|
||||
private String fjxh;
|
||||
private String wjlx_dm;
|
||||
private String wjslt;
|
||||
private String wjnr;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getHddj_xh() {
|
||||
return this.hddj_xh;
|
||||
}
|
||||
|
||||
public void setHddj_xh(String hddj_xh) {
|
||||
this.hddj_xh = hddj_xh;
|
||||
}
|
||||
|
||||
public String getFjxh() {
|
||||
return this.fjxh;
|
||||
}
|
||||
|
||||
public void setFjxh(String fjxh) {
|
||||
this.fjxh = fjxh;
|
||||
}
|
||||
|
||||
public String getWjlx_dm() {
|
||||
return this.wjlx_dm;
|
||||
}
|
||||
|
||||
public void setWjlx_dm(String wjlx_dm) {
|
||||
this.wjlx_dm = wjlx_dm;
|
||||
}
|
||||
|
||||
public String getWjslt() {
|
||||
return this.wjslt;
|
||||
}
|
||||
|
||||
public void setWjslt(String wjslt) {
|
||||
this.wjslt = wjslt;
|
||||
}
|
||||
|
||||
public String getWjnr() {
|
||||
return this.wjnr;
|
||||
}
|
||||
|
||||
public void setWjnr(String wjnr) {
|
||||
this.wjnr = wjnr;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwHdGr
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String hddj_xh;
|
||||
private String swry_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getHddj_xh() {
|
||||
return this.hddj_xh;
|
||||
}
|
||||
|
||||
public void setHddj_xh(String hddj_xh) {
|
||||
this.hddj_xh = hddj_xh;
|
||||
}
|
||||
|
||||
public String getSwry_dm() {
|
||||
return this.swry_dm;
|
||||
}
|
||||
|
||||
public void setSwry_dm(String swry_dm) {
|
||||
this.swry_dm = swry_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwTz
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String tzdj_xh;
|
||||
private String fsr_swry_dm;
|
||||
private String fssj;
|
||||
private String zt;
|
||||
private String tznr;
|
||||
private String yxbz;
|
||||
private String swjg_dm;
|
||||
private String jsdxbz;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getTzdj_xh() {
|
||||
return this.tzdj_xh;
|
||||
}
|
||||
|
||||
public void setTzdj_xh(String tzdj_xh) {
|
||||
this.tzdj_xh = tzdj_xh;
|
||||
}
|
||||
|
||||
public String getFsr_swry_dm() {
|
||||
return this.fsr_swry_dm;
|
||||
}
|
||||
|
||||
public void setFsr_swry_dm(String fsr_swry_dm) {
|
||||
this.fsr_swry_dm = fsr_swry_dm;
|
||||
}
|
||||
|
||||
public String getFssj() {
|
||||
return this.fssj;
|
||||
}
|
||||
|
||||
public void setFssj(String fssj) {
|
||||
this.fssj = fssj;
|
||||
}
|
||||
|
||||
public String getZt() {
|
||||
return this.zt;
|
||||
}
|
||||
|
||||
public void setZt(String zt) {
|
||||
this.zt = zt;
|
||||
}
|
||||
|
||||
public String getTznr() {
|
||||
return this.tznr;
|
||||
}
|
||||
|
||||
public void setTznr(String tznr) {
|
||||
this.tznr = tznr;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getSwjg_dm() {
|
||||
return this.swjg_dm;
|
||||
}
|
||||
|
||||
public void setSwjg_dm(String swjg_dm) {
|
||||
this.swjg_dm = swjg_dm;
|
||||
}
|
||||
|
||||
public String getJsdxbz() {
|
||||
return this.jsdxbz;
|
||||
}
|
||||
|
||||
public void setJsdxbz(String jsdxbz) {
|
||||
this.jsdxbz = jsdxbz;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwTzBm
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String tzdj_xh;
|
||||
private String swbm_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getTzdj_xh() {
|
||||
return this.tzdj_xh;
|
||||
}
|
||||
|
||||
public void setTzdj_xh(String tzdj_xh) {
|
||||
this.tzdj_xh = tzdj_xh;
|
||||
}
|
||||
|
||||
public String getSwbm_dm() {
|
||||
return this.swbm_dm;
|
||||
}
|
||||
|
||||
public void setSwbm_dm(String swbm_dm) {
|
||||
this.swbm_dm = swbm_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwTzFj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String tzdj_xh;
|
||||
private String fjxh;
|
||||
private String wjlx_dm;
|
||||
private String wjslt;
|
||||
private String wjnr;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getTzdj_xh() {
|
||||
return this.tzdj_xh;
|
||||
}
|
||||
|
||||
public void setTzdj_xh(String tzdj_xh) {
|
||||
this.tzdj_xh = tzdj_xh;
|
||||
}
|
||||
|
||||
public String getFjxh() {
|
||||
return this.fjxh;
|
||||
}
|
||||
|
||||
public void setFjxh(String fjxh) {
|
||||
this.fjxh = fjxh;
|
||||
}
|
||||
|
||||
public String getWjlx_dm() {
|
||||
return this.wjlx_dm;
|
||||
}
|
||||
|
||||
public void setWjlx_dm(String wjlx_dm) {
|
||||
this.wjlx_dm = wjlx_dm;
|
||||
}
|
||||
|
||||
public String getWjslt() {
|
||||
return this.wjslt;
|
||||
}
|
||||
|
||||
public void setWjslt(String wjslt) {
|
||||
this.wjslt = wjslt;
|
||||
}
|
||||
|
||||
public String getWjnr() {
|
||||
return this.wjnr;
|
||||
}
|
||||
|
||||
public void setWjnr(String wjnr) {
|
||||
this.wjnr = wjnr;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWddwTzGr
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String tzdj_xh;
|
||||
private String swry_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getTzdj_xh() {
|
||||
return this.tzdj_xh;
|
||||
}
|
||||
|
||||
public void setTzdj_xh(String tzdj_xh) {
|
||||
this.tzdj_xh = tzdj_xh;
|
||||
}
|
||||
|
||||
public String getSwry_dm() {
|
||||
return this.swry_dm;
|
||||
}
|
||||
|
||||
public void setSwry_dm(String swry_dm) {
|
||||
this.swry_dm = swry_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWdsxFx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String fxdj_xh;
|
||||
private String fsr_swry_dm;
|
||||
private String fssj;
|
||||
private String fxnr;
|
||||
private String fxlb_dm;
|
||||
private String yxbz;
|
||||
private String swjg_dm;
|
||||
private String pl_sl;
|
||||
private String z_zl;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getFxdj_xh() {
|
||||
return this.fxdj_xh;
|
||||
}
|
||||
|
||||
public void setFxdj_xh(String fxdj_xh) {
|
||||
this.fxdj_xh = fxdj_xh;
|
||||
}
|
||||
|
||||
public String getFsr_swry_dm() {
|
||||
return this.fsr_swry_dm;
|
||||
}
|
||||
|
||||
public void setFsr_swry_dm(String fsr_swry_dm) {
|
||||
this.fsr_swry_dm = fsr_swry_dm;
|
||||
}
|
||||
|
||||
public String getFssj() {
|
||||
return this.fssj;
|
||||
}
|
||||
|
||||
public void setFssj(String fssj) {
|
||||
this.fssj = fssj;
|
||||
}
|
||||
|
||||
public String getFxnr() {
|
||||
return this.fxnr;
|
||||
}
|
||||
|
||||
public void setFxnr(String fxnr) {
|
||||
this.fxnr = fxnr;
|
||||
}
|
||||
|
||||
public String getFxlb_dm() {
|
||||
return this.fxlb_dm;
|
||||
}
|
||||
|
||||
public void setFxlb_dm(String fxlb_dm) {
|
||||
this.fxlb_dm = fxlb_dm;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getSwjg_dm() {
|
||||
return this.swjg_dm;
|
||||
}
|
||||
|
||||
public void setSwjg_dm(String swjg_dm) {
|
||||
this.swjg_dm = swjg_dm;
|
||||
}
|
||||
|
||||
public String getPl_sl() {
|
||||
return this.pl_sl;
|
||||
}
|
||||
|
||||
public void setPl_sl(String pl_sl) {
|
||||
this.pl_sl = pl_sl;
|
||||
}
|
||||
|
||||
public String getZ_zl() {
|
||||
return this.z_zl;
|
||||
}
|
||||
|
||||
public void setZ_zl(String z_zl) {
|
||||
this.z_zl = z_zl;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWdsxFxBm
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String fxdj_xh;
|
||||
private String swbm_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getFxdj_xh() {
|
||||
return this.fxdj_xh;
|
||||
}
|
||||
|
||||
public void setFxdj_xh(String fxdj_xh) {
|
||||
this.fxdj_xh = fxdj_xh;
|
||||
}
|
||||
|
||||
public String getSwbm_dm() {
|
||||
return this.swbm_dm;
|
||||
}
|
||||
|
||||
public void setSwbm_dm(String swbm_dm) {
|
||||
this.swbm_dm = swbm_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWdsxFxFj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String fxdj_xh;
|
||||
private String fjxh;
|
||||
private String wjlx_dm;
|
||||
private String wjslt;
|
||||
private String wjnr;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getFxdj_xh() {
|
||||
return this.fxdj_xh;
|
||||
}
|
||||
|
||||
public void setFxdj_xh(String fxdj_xh) {
|
||||
this.fxdj_xh = fxdj_xh;
|
||||
}
|
||||
|
||||
public String getFjxh() {
|
||||
return this.fjxh;
|
||||
}
|
||||
|
||||
public void setFjxh(String fjxh) {
|
||||
this.fjxh = fjxh;
|
||||
}
|
||||
|
||||
public String getWjlx_dm() {
|
||||
return this.wjlx_dm;
|
||||
}
|
||||
|
||||
public void setWjlx_dm(String wjlx_dm) {
|
||||
this.wjlx_dm = wjlx_dm;
|
||||
}
|
||||
|
||||
public String getWjslt() {
|
||||
return this.wjslt;
|
||||
}
|
||||
|
||||
public void setWjslt(String wjslt) {
|
||||
this.wjslt = wjslt;
|
||||
}
|
||||
|
||||
public String getWjnr() {
|
||||
return this.wjnr;
|
||||
}
|
||||
|
||||
public void setWjnr(String wjnr) {
|
||||
this.wjnr = wjnr;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhWdsxFxGr
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String databaseUsername;
|
||||
private String fxdj_xh;
|
||||
private String swry_dm;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getFxdj_xh() {
|
||||
return this.fxdj_xh;
|
||||
}
|
||||
|
||||
public void setFxdj_xh(String fxdj_xh) {
|
||||
this.fxdj_xh = fxdj_xh;
|
||||
}
|
||||
|
||||
public String getSwry_dm() {
|
||||
return this.swry_dm;
|
||||
}
|
||||
|
||||
public void setSwry_dm(String swry_dm) {
|
||||
this.swry_dm = swry_dm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,173 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhZhdjTwxxLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String log_xh;
|
||||
private String ywid;
|
||||
private String gnmk_dm;
|
||||
private String twxxlx_dm;
|
||||
private String czy_dm;
|
||||
private String czlx_dm;
|
||||
private String czsj;
|
||||
private String czfs;
|
||||
private String czsbbs;
|
||||
private String gjnrxx;
|
||||
private String sb_uuid_old;
|
||||
private String hfdzlx;
|
||||
private String ydplmx_uuid;
|
||||
private String hfdzjl_uuid;
|
||||
private String databaseUsername;
|
||||
private String pcl_xh;
|
||||
private String errmess;
|
||||
private String djyw_uuid;
|
||||
|
||||
public String getLog_xh() {
|
||||
return this.log_xh;
|
||||
}
|
||||
|
||||
public void setLog_xh(String log_xh) {
|
||||
this.log_xh = log_xh;
|
||||
}
|
||||
|
||||
public String getYwid() {
|
||||
return this.ywid;
|
||||
}
|
||||
|
||||
public void setYwid(String ywid) {
|
||||
this.ywid = ywid;
|
||||
}
|
||||
|
||||
public String getGnmk_dm() {
|
||||
return this.gnmk_dm;
|
||||
}
|
||||
|
||||
public void setGnmk_dm(String gnmk_dm) {
|
||||
this.gnmk_dm = gnmk_dm;
|
||||
}
|
||||
|
||||
public String getTwxxlx_dm() {
|
||||
return this.twxxlx_dm;
|
||||
}
|
||||
|
||||
public void setTwxxlx_dm(String twxxlx_dm) {
|
||||
this.twxxlx_dm = twxxlx_dm;
|
||||
}
|
||||
|
||||
public String getCzy_dm() {
|
||||
return this.czy_dm;
|
||||
}
|
||||
|
||||
public void setCzy_dm(String czy_dm) {
|
||||
this.czy_dm = czy_dm;
|
||||
}
|
||||
|
||||
public String getCzlx_dm() {
|
||||
return this.czlx_dm;
|
||||
}
|
||||
|
||||
public void setCzlx_dm(String czlx_dm) {
|
||||
this.czlx_dm = czlx_dm;
|
||||
}
|
||||
|
||||
public String getCzsj() {
|
||||
return this.czsj;
|
||||
}
|
||||
|
||||
public void setCzsj(String czsj) {
|
||||
this.czsj = czsj;
|
||||
}
|
||||
|
||||
public String getCzfs() {
|
||||
return this.czfs;
|
||||
}
|
||||
|
||||
public void setCzfs(String czfs) {
|
||||
this.czfs = czfs;
|
||||
}
|
||||
|
||||
public String getCzsbbs() {
|
||||
return this.czsbbs;
|
||||
}
|
||||
|
||||
public void setCzsbbs(String czsbbs) {
|
||||
this.czsbbs = czsbbs;
|
||||
}
|
||||
|
||||
public String getGjnrxx() {
|
||||
return this.gjnrxx;
|
||||
}
|
||||
|
||||
public void setGjnrxx(String gjnrxx) {
|
||||
this.gjnrxx = gjnrxx;
|
||||
}
|
||||
|
||||
public String getSb_uuid_old() {
|
||||
return this.sb_uuid_old;
|
||||
}
|
||||
|
||||
public void setSb_uuid_old(String sb_uuid_old) {
|
||||
this.sb_uuid_old = sb_uuid_old;
|
||||
}
|
||||
|
||||
public String getHfdzlx() {
|
||||
return this.hfdzlx;
|
||||
}
|
||||
|
||||
public void setHfdzlx(String hfdzlx) {
|
||||
this.hfdzlx = hfdzlx;
|
||||
}
|
||||
|
||||
public String getYdplmx_uuid() {
|
||||
return this.ydplmx_uuid;
|
||||
}
|
||||
|
||||
public void setYdplmx_uuid(String ydplmx_uuid) {
|
||||
this.ydplmx_uuid = ydplmx_uuid;
|
||||
}
|
||||
|
||||
public String getHfdzjl_uuid() {
|
||||
return this.hfdzjl_uuid;
|
||||
}
|
||||
|
||||
public void setHfdzjl_uuid(String hfdzjl_uuid) {
|
||||
this.hfdzjl_uuid = hfdzjl_uuid;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getPcl_xh() {
|
||||
return this.pcl_xh;
|
||||
}
|
||||
|
||||
public void setPcl_xh(String pcl_xh) {
|
||||
this.pcl_xh = pcl_xh;
|
||||
}
|
||||
|
||||
public String getErrmess() {
|
||||
return this.errmess;
|
||||
}
|
||||
|
||||
public void setErrmess(String errmess) {
|
||||
this.errmess = errmess;
|
||||
}
|
||||
|
||||
public String getDjyw_uuid() {
|
||||
return this.djyw_uuid;
|
||||
}
|
||||
|
||||
public void setDjyw_uuid(String djyw_uuid) {
|
||||
this.djyw_uuid = djyw_uuid;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class QyhZhdjTwxxLogYwbw
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String log_xh;
|
||||
private String ywbw;
|
||||
private String czsj;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getLog_xh() {
|
||||
return this.log_xh;
|
||||
}
|
||||
|
||||
public void setLog_xh(String log_xh) {
|
||||
this.log_xh = log_xh;
|
||||
}
|
||||
|
||||
public String getYwbw() {
|
||||
return this.ywbw;
|
||||
}
|
||||
|
||||
public void setYwbw(String ywbw) {
|
||||
this.ywbw = ywbw;
|
||||
}
|
||||
|
||||
public String getCzsj() {
|
||||
return this.czsj;
|
||||
}
|
||||
|
||||
public void setCzsj(String czsj) {
|
||||
this.czsj = czsj;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,227 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SmzBsyHtyzjl
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String yzjluuid;
|
||||
private String swjgDm;
|
||||
private String openId;
|
||||
private String sfzhm;
|
||||
private String sjhm;
|
||||
private String xm;
|
||||
private String xb;
|
||||
private String mz;
|
||||
private String zz;
|
||||
private String csnyr;
|
||||
private String qfjg;
|
||||
private String yxqx;
|
||||
private String sfzpic;
|
||||
private String sfzpic2;
|
||||
private String yzm;
|
||||
private String spbm;
|
||||
private String errcode;
|
||||
private String errmess;
|
||||
private String errcode2;
|
||||
private String errmess2;
|
||||
private String bdlx;
|
||||
private String rxpic;
|
||||
private String xtbz;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getYzjluuid() {
|
||||
return this.yzjluuid;
|
||||
}
|
||||
|
||||
public void setYzjluuid(String yzjluuid) {
|
||||
this.yzjluuid = yzjluuid;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getXb() {
|
||||
return this.xb;
|
||||
}
|
||||
|
||||
public void setXb(String xb) {
|
||||
this.xb = xb;
|
||||
}
|
||||
|
||||
public String getMz() {
|
||||
return this.mz;
|
||||
}
|
||||
|
||||
public void setMz(String mz) {
|
||||
this.mz = mz;
|
||||
}
|
||||
|
||||
public String getZz() {
|
||||
return this.zz;
|
||||
}
|
||||
|
||||
public String getCsnyr() {
|
||||
return this.csnyr;
|
||||
}
|
||||
|
||||
public void setCsnyr(String csnyr) {
|
||||
this.csnyr = csnyr;
|
||||
}
|
||||
|
||||
public void setZz(String zz) {
|
||||
this.zz = zz;
|
||||
}
|
||||
|
||||
public String getQfjg() {
|
||||
return this.qfjg;
|
||||
}
|
||||
|
||||
public void setQfjg(String qfjg) {
|
||||
this.qfjg = qfjg;
|
||||
}
|
||||
|
||||
public String getYxqx() {
|
||||
return this.yxqx;
|
||||
}
|
||||
|
||||
public void setYxqx(String yxqx) {
|
||||
this.yxqx = yxqx;
|
||||
}
|
||||
|
||||
public String getSfzpic() {
|
||||
return this.sfzpic;
|
||||
}
|
||||
|
||||
public void setSfzpic(String sfzpic) {
|
||||
this.sfzpic = sfzpic;
|
||||
}
|
||||
|
||||
public String getSfzpic2() {
|
||||
return this.sfzpic2;
|
||||
}
|
||||
|
||||
public void setSfzpic2(String sfzpic2) {
|
||||
this.sfzpic2 = sfzpic2;
|
||||
}
|
||||
|
||||
public String getYzm() {
|
||||
return this.yzm;
|
||||
}
|
||||
|
||||
public void setYzm(String yzm) {
|
||||
this.yzm = yzm;
|
||||
}
|
||||
|
||||
public String getSpbm() {
|
||||
return this.spbm;
|
||||
}
|
||||
|
||||
public void setSpbm(String spbm) {
|
||||
this.spbm = spbm;
|
||||
}
|
||||
|
||||
public String getErrcode() {
|
||||
return this.errcode;
|
||||
}
|
||||
|
||||
public void setErrcode(String errcode) {
|
||||
this.errcode = errcode;
|
||||
}
|
||||
|
||||
public String getErrmess() {
|
||||
return this.errmess;
|
||||
}
|
||||
|
||||
public void setErrmess(String errmess) {
|
||||
this.errmess = errmess;
|
||||
}
|
||||
|
||||
public String getErrcode2() {
|
||||
return this.errcode2;
|
||||
}
|
||||
|
||||
public void setErrcode2(String errcode2) {
|
||||
this.errcode2 = errcode2;
|
||||
}
|
||||
|
||||
public String getErrmess2() {
|
||||
return this.errmess2;
|
||||
}
|
||||
|
||||
public void setErrmess2(String errmess2) {
|
||||
this.errmess2 = errmess2;
|
||||
}
|
||||
|
||||
public String getBdlx() {
|
||||
return this.bdlx;
|
||||
}
|
||||
|
||||
public void setBdlx(String bdlx) {
|
||||
this.bdlx = bdlx;
|
||||
}
|
||||
|
||||
public String getRxpic() {
|
||||
return this.rxpic;
|
||||
}
|
||||
|
||||
public void setRxpic(String rxpic) {
|
||||
this.rxpic = rxpic;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getXtbz() {
|
||||
return this.xtbz;
|
||||
}
|
||||
|
||||
public void setXtbz(String xtbz) {
|
||||
this.xtbz = xtbz;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getOpenId() {
|
||||
return this.openId;
|
||||
}
|
||||
|
||||
public void setOpenId(String openId) {
|
||||
this.openId = openId;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SmzBsySfztx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String bsydjXh;
|
||||
private String sfztxlbDm;
|
||||
private String sjly;
|
||||
private String pic;
|
||||
private String cjrq;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getBsydjXh() {
|
||||
return this.bsydjXh;
|
||||
}
|
||||
|
||||
public void setBsydjXh(String bsydjXh) {
|
||||
this.bsydjXh = bsydjXh;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getPic() {
|
||||
return this.pic;
|
||||
}
|
||||
|
||||
public void setPic(String pic) {
|
||||
this.pic = pic;
|
||||
}
|
||||
|
||||
public String getSfztxlbDm() {
|
||||
return this.sfztxlbDm;
|
||||
}
|
||||
|
||||
public void setSfztxlbDm(String sfztxlbDm) {
|
||||
this.sfztxlbDm = sfztxlbDm;
|
||||
}
|
||||
|
||||
public String getSjly() {
|
||||
return this.sjly;
|
||||
}
|
||||
|
||||
public void setSjly(String sjly) {
|
||||
this.sjly = sjly;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,245 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SmzBsySxsfzBdjl
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String rxsfzBdxh;
|
||||
private String xm;
|
||||
private String sfzhm;
|
||||
private String xb;
|
||||
private String mz;
|
||||
private String csrq;
|
||||
private String zz;
|
||||
private String qfjg;
|
||||
private String yxq_q;
|
||||
private String yxq_z;
|
||||
private String sfzzmPic;
|
||||
private String sfzfmPic;
|
||||
private String headPic;
|
||||
private String bdrq;
|
||||
private String xsbl;
|
||||
private String bdjg;
|
||||
private String qhhm;
|
||||
private String sjlyDm;
|
||||
private String cjrq;
|
||||
private String cjrDm;
|
||||
private String jkyzuuid;
|
||||
private String rtnMsg;
|
||||
private String bsdt_djxh;
|
||||
private String cjbz;
|
||||
private String qhsj;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getRxsfzBdxh() {
|
||||
return this.rxsfzBdxh;
|
||||
}
|
||||
|
||||
public void setRxsfzBdxh(String rxsfzBdxh) {
|
||||
this.rxsfzBdxh = rxsfzBdxh;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getXb() {
|
||||
return this.xb;
|
||||
}
|
||||
|
||||
public void setXb(String xb) {
|
||||
this.xb = xb;
|
||||
}
|
||||
|
||||
public String getMz() {
|
||||
return this.mz;
|
||||
}
|
||||
|
||||
public void setMz(String mz) {
|
||||
this.mz = mz;
|
||||
}
|
||||
|
||||
public String getCsrq() {
|
||||
return this.csrq;
|
||||
}
|
||||
|
||||
public void setCsrq(String csrq) {
|
||||
this.csrq = csrq;
|
||||
}
|
||||
|
||||
public String getZz() {
|
||||
return this.zz;
|
||||
}
|
||||
|
||||
public void setZz(String zz) {
|
||||
this.zz = zz;
|
||||
}
|
||||
|
||||
public String getQfjg() {
|
||||
return this.qfjg;
|
||||
}
|
||||
|
||||
public void setQfjg(String qfjg) {
|
||||
this.qfjg = qfjg;
|
||||
}
|
||||
|
||||
public String getYxq_q() {
|
||||
return this.yxq_q;
|
||||
}
|
||||
|
||||
public void setYxq_q(String yxq_q) {
|
||||
this.yxq_q = yxq_q;
|
||||
}
|
||||
|
||||
public String getYxq_z() {
|
||||
return this.yxq_z;
|
||||
}
|
||||
|
||||
public void setYxq_z(String yxq_z) {
|
||||
this.yxq_z = yxq_z;
|
||||
}
|
||||
|
||||
public String getSfzzmPic() {
|
||||
return this.sfzzmPic;
|
||||
}
|
||||
|
||||
public void setSfzzmPic(String sfzzmPic) {
|
||||
this.sfzzmPic = sfzzmPic;
|
||||
}
|
||||
|
||||
public String getSfzfmPic() {
|
||||
return this.sfzfmPic;
|
||||
}
|
||||
|
||||
public void setSfzfmPic(String sfzfmPic) {
|
||||
this.sfzfmPic = sfzfmPic;
|
||||
}
|
||||
|
||||
public String getHeadPic() {
|
||||
return this.headPic;
|
||||
}
|
||||
|
||||
public void setHeadPic(String headPic) {
|
||||
this.headPic = headPic;
|
||||
}
|
||||
|
||||
public String getBdrq() {
|
||||
return this.bdrq;
|
||||
}
|
||||
|
||||
public void setBdrq(String bdrq) {
|
||||
this.bdrq = bdrq;
|
||||
}
|
||||
|
||||
public String getXsbl() {
|
||||
return this.xsbl;
|
||||
}
|
||||
|
||||
public void setXsbl(String xsbl) {
|
||||
this.xsbl = xsbl;
|
||||
}
|
||||
|
||||
public String getBdjg() {
|
||||
return this.bdjg;
|
||||
}
|
||||
|
||||
public void setBdjg(String bdjg) {
|
||||
this.bdjg = bdjg;
|
||||
}
|
||||
|
||||
public String getQhhm() {
|
||||
return this.qhhm;
|
||||
}
|
||||
|
||||
public void setQhhm(String qhhm) {
|
||||
this.qhhm = qhhm;
|
||||
}
|
||||
|
||||
public String getSjlyDm() {
|
||||
return this.sjlyDm;
|
||||
}
|
||||
|
||||
public void setSjlyDm(String sjlyDm) {
|
||||
this.sjlyDm = sjlyDm;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getCjrDm() {
|
||||
return this.cjrDm;
|
||||
}
|
||||
|
||||
public void setCjrDm(String cjrDm) {
|
||||
this.cjrDm = cjrDm;
|
||||
}
|
||||
|
||||
public String getJkyzuuid() {
|
||||
return this.jkyzuuid;
|
||||
}
|
||||
|
||||
public void setJkyzuuid(String jkyzuuid) {
|
||||
this.jkyzuuid = jkyzuuid;
|
||||
}
|
||||
|
||||
public String getRtnMsg() {
|
||||
return this.rtnMsg;
|
||||
}
|
||||
|
||||
public void setRtnMsg(String rtnMsg) {
|
||||
this.rtnMsg = rtnMsg;
|
||||
}
|
||||
|
||||
public String getBsdt_djxh() {
|
||||
return this.bsdt_djxh;
|
||||
}
|
||||
|
||||
public void setBsdt_djxh(String bsdt_djxh) {
|
||||
this.bsdt_djxh = bsdt_djxh;
|
||||
}
|
||||
|
||||
public String getCjbz() {
|
||||
return this.cjbz;
|
||||
}
|
||||
|
||||
public void setCjbz(String cjbz) {
|
||||
this.cjbz = cjbz;
|
||||
}
|
||||
|
||||
public void setQhsj(String qhsj) {
|
||||
this.qhsj = qhsj;
|
||||
}
|
||||
|
||||
public String getQhsj() {
|
||||
return this.qhsj;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,402 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseBusinessDomain;
|
||||
import com.hst.framework.util.HstDateUtil;
|
||||
|
||||
public class SssxSlhz
|
||||
extends BaseBusinessDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String sssxSlxh;
|
||||
private String sssxDm;
|
||||
private String url;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String nsrdzdah;
|
||||
private String nsrSwjgDm;
|
||||
private String jbdm;
|
||||
private String lrrq;
|
||||
private String sqbz;
|
||||
private String sqrq;
|
||||
private String slfs;
|
||||
private String fpfs;
|
||||
private String slztDm;
|
||||
private String wsDjhzXh;
|
||||
private String byslyj;
|
||||
private String slrDm;
|
||||
private String slrq;
|
||||
private String slrSwjgDm;
|
||||
private String fhbz;
|
||||
private String fhrDm;
|
||||
private String fhrq;
|
||||
private String fhrSwjgDm;
|
||||
private String yxbz;
|
||||
private String zfrDm;
|
||||
private String zfrq;
|
||||
private String ctaisDrbz;
|
||||
private String ctaisWspzxh;
|
||||
private String ctaisDrrDm;
|
||||
private String ctaisDrrq;
|
||||
private String ctaisByzsyy;
|
||||
private String ctaisJkts;
|
||||
private String spjlXzxmValueDm;
|
||||
private String fhjlXzxmValueDm;
|
||||
private String lxrDjxh;
|
||||
private String yjdzDjxxXh;
|
||||
private String sqslfsDm;
|
||||
private String slbh;
|
||||
private String swdOpenUrl;
|
||||
private String sqrid;
|
||||
|
||||
public String getSssxSlxh() {
|
||||
return this.sssxSlxh;
|
||||
}
|
||||
|
||||
public void setSssxSlxh(String sssxSlxh) {
|
||||
this.sssxSlxh = sssxSlxh;
|
||||
}
|
||||
|
||||
public String getSssxDm() {
|
||||
return this.sssxDm;
|
||||
}
|
||||
|
||||
public void setSssxDm(String sssxDm) {
|
||||
this.sssxDm = sssxDm;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getNsrdzdah() {
|
||||
return this.nsrdzdah;
|
||||
}
|
||||
|
||||
public void setNsrdzdah(String nsrdzdah) {
|
||||
this.nsrdzdah = nsrdzdah;
|
||||
}
|
||||
|
||||
public String getNsrSwjgDm() {
|
||||
return this.nsrSwjgDm;
|
||||
}
|
||||
|
||||
public void setNsrSwjgDm(String nsrSwjgDm) {
|
||||
this.nsrSwjgDm = nsrSwjgDm;
|
||||
}
|
||||
|
||||
public String getJbdm() {
|
||||
return this.jbdm;
|
||||
}
|
||||
|
||||
public void setJbdm(String jbdm) {
|
||||
this.jbdm = jbdm;
|
||||
}
|
||||
|
||||
public String getLrrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.lrrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.lrrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setLrrq(String lrrq) {
|
||||
this.lrrq = lrrq;
|
||||
}
|
||||
|
||||
public String getSqbz() {
|
||||
return this.sqbz;
|
||||
}
|
||||
|
||||
public void setSqbz(String sqbz) {
|
||||
this.sqbz = sqbz;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.sqrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.sqrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getSlfs() {
|
||||
return this.slfs;
|
||||
}
|
||||
|
||||
public void setSlfs(String slfs) {
|
||||
this.slfs = slfs;
|
||||
}
|
||||
|
||||
public String getFpfs() {
|
||||
return this.fpfs;
|
||||
}
|
||||
|
||||
public void setFpfs(String fpfs) {
|
||||
this.fpfs = fpfs;
|
||||
}
|
||||
|
||||
public String getSlztDm() {
|
||||
return this.slztDm;
|
||||
}
|
||||
|
||||
public void setSlztDm(String slztDm) {
|
||||
this.slztDm = slztDm;
|
||||
}
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getByslyj() {
|
||||
return this.byslyj;
|
||||
}
|
||||
|
||||
public void setByslyj(String byslyj) {
|
||||
this.byslyj = byslyj;
|
||||
}
|
||||
|
||||
public String getSlrDm() {
|
||||
return this.slrDm;
|
||||
}
|
||||
|
||||
public void setSlrDm(String slrDm) {
|
||||
this.slrDm = slrDm;
|
||||
}
|
||||
|
||||
public String getSlrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.slrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.slrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSlrq(String slrq) {
|
||||
this.slrq = slrq;
|
||||
}
|
||||
|
||||
public String getSlrSwjgDm() {
|
||||
return this.slrSwjgDm;
|
||||
}
|
||||
|
||||
public void setSlrSwjgDm(String slrSwjgDm) {
|
||||
this.slrSwjgDm = slrSwjgDm;
|
||||
}
|
||||
|
||||
public String getFhbz() {
|
||||
return this.fhbz;
|
||||
}
|
||||
|
||||
public void setFhbz(String fhbz) {
|
||||
this.fhbz = fhbz;
|
||||
}
|
||||
|
||||
public String getFhrDm() {
|
||||
return this.fhrDm;
|
||||
}
|
||||
|
||||
public void setFhrDm(String fhrDm) {
|
||||
this.fhrDm = fhrDm;
|
||||
}
|
||||
|
||||
public String getFhrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.fhrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.fhrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setFhrq(String fhrq) {
|
||||
this.fhrq = fhrq;
|
||||
}
|
||||
|
||||
public String getFhrSwjgDm() {
|
||||
return this.fhrSwjgDm;
|
||||
}
|
||||
|
||||
public void setFhrSwjgDm(String fhrSwjgDm) {
|
||||
this.fhrSwjgDm = fhrSwjgDm;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getZfrDm() {
|
||||
return this.zfrDm;
|
||||
}
|
||||
|
||||
public void setZfrDm(String zfrDm) {
|
||||
this.zfrDm = zfrDm;
|
||||
}
|
||||
|
||||
public String getZfrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.zfrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.zfrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setZfrq(String zfrq) {
|
||||
this.zfrq = zfrq;
|
||||
}
|
||||
|
||||
public String getCtaisDrbz() {
|
||||
return this.ctaisDrbz;
|
||||
}
|
||||
|
||||
public void setCtaisDrbz(String ctaisDrbz) {
|
||||
this.ctaisDrbz = ctaisDrbz;
|
||||
}
|
||||
|
||||
public String getCtaisWspzxh() {
|
||||
return this.ctaisWspzxh;
|
||||
}
|
||||
|
||||
public void setCtaisWspzxh(String ctaisWspzxh) {
|
||||
this.ctaisWspzxh = ctaisWspzxh;
|
||||
}
|
||||
|
||||
public String getCtaisDrrDm() {
|
||||
return this.ctaisDrrDm;
|
||||
}
|
||||
|
||||
public void setCtaisDrrDm(String ctaisDrrDm) {
|
||||
this.ctaisDrrDm = ctaisDrrDm;
|
||||
}
|
||||
|
||||
public String getCtaisDrrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.ctaisDrrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.ctaisDrrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setCtaisDrrq(String ctaisDrrq) {
|
||||
this.ctaisDrrq = ctaisDrrq;
|
||||
}
|
||||
|
||||
public String getCtaisByzsyy() {
|
||||
return this.ctaisByzsyy;
|
||||
}
|
||||
|
||||
public void setCtaisByzsyy(String ctaisByzsyy) {
|
||||
this.ctaisByzsyy = ctaisByzsyy;
|
||||
}
|
||||
|
||||
public String getCtaisJkts() {
|
||||
return this.ctaisJkts;
|
||||
}
|
||||
|
||||
public void setCtaisJkts(String ctaisJkts) {
|
||||
this.ctaisJkts = ctaisJkts;
|
||||
}
|
||||
|
||||
public String getSpjlXzxmValueDm() {
|
||||
return this.spjlXzxmValueDm;
|
||||
}
|
||||
|
||||
public void setSpjlXzxmValueDm(String spjlXzxmValueDm) {
|
||||
this.spjlXzxmValueDm = spjlXzxmValueDm;
|
||||
}
|
||||
|
||||
public String getFhjlXzxmValueDm() {
|
||||
return this.fhjlXzxmValueDm;
|
||||
}
|
||||
|
||||
public void setFhjlXzxmValueDm(String fhjlXzxmValueDm) {
|
||||
this.fhjlXzxmValueDm = fhjlXzxmValueDm;
|
||||
}
|
||||
|
||||
public String getLxrDjxh() {
|
||||
return this.lxrDjxh;
|
||||
}
|
||||
|
||||
public void setLxrDjxh(String lxrDjxh) {
|
||||
this.lxrDjxh = lxrDjxh;
|
||||
}
|
||||
|
||||
public String getSqslfsDm() {
|
||||
return this.sqslfsDm;
|
||||
}
|
||||
|
||||
public void setSqslfsDm(String sqslfsDm) {
|
||||
this.sqslfsDm = sqslfsDm;
|
||||
}
|
||||
|
||||
public String getYjdzDjxxXh() {
|
||||
return this.yjdzDjxxXh;
|
||||
}
|
||||
|
||||
public void setYjdzDjxxXh(String yjdzDjxxXh) {
|
||||
this.yjdzDjxxXh = yjdzDjxxXh;
|
||||
}
|
||||
|
||||
public String getSlbh() {
|
||||
return this.slbh;
|
||||
}
|
||||
|
||||
public void setSlbh(String slbh) {
|
||||
this.slbh = slbh;
|
||||
}
|
||||
|
||||
public String getSwdOpenUrl() {
|
||||
return this.swdOpenUrl;
|
||||
}
|
||||
|
||||
public void setSwdOpenUrl(String swdOpenUrl) {
|
||||
this.swdOpenUrl = swdOpenUrl;
|
||||
}
|
||||
|
||||
public String getSqrid() {
|
||||
return this.sqrid;
|
||||
}
|
||||
|
||||
public void setSqrid(String sqrid) {
|
||||
this.sqrid = sqrid;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SssxSlsqSqrYjxx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String djxxXh;
|
||||
private String nsrbsh;
|
||||
private String dz;
|
||||
private String yb;
|
||||
private String sjr;
|
||||
private String sjhm;
|
||||
private String gddh;
|
||||
private String yxbz;
|
||||
private String cjrq;
|
||||
|
||||
public String getDjxxXh() {
|
||||
return this.djxxXh;
|
||||
}
|
||||
|
||||
public void setDjxxXh(String djxxXh) {
|
||||
this.djxxXh = djxxXh;
|
||||
}
|
||||
|
||||
public String getNsrbsh() {
|
||||
return this.nsrbsh;
|
||||
}
|
||||
|
||||
public void setNsrbsh(String nsrbsh) {
|
||||
this.nsrbsh = nsrbsh;
|
||||
}
|
||||
|
||||
public String getDz() {
|
||||
return this.dz;
|
||||
}
|
||||
|
||||
public void setDz(String dz) {
|
||||
this.dz = dz;
|
||||
}
|
||||
|
||||
public String getYb() {
|
||||
return this.yb;
|
||||
}
|
||||
|
||||
public void setYb(String yb) {
|
||||
this.yb = yb;
|
||||
}
|
||||
|
||||
public String getSjr() {
|
||||
return this.sjr;
|
||||
}
|
||||
|
||||
public void setSjr(String sjr) {
|
||||
this.sjr = sjr;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getGddh() {
|
||||
return this.gddh;
|
||||
}
|
||||
|
||||
public void setGddh(String gddh) {
|
||||
this.gddh = gddh;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SssxSlsqSqrxx
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String djxxXh;
|
||||
private String nsrbsh;
|
||||
private String xm;
|
||||
private String sjhm;
|
||||
private String gddh;
|
||||
private String yxbz;
|
||||
private String cjrq;
|
||||
|
||||
public String getDjxxXh() {
|
||||
return this.djxxXh;
|
||||
}
|
||||
|
||||
public void setDjxxXh(String djxxXh) {
|
||||
this.djxxXh = djxxXh;
|
||||
}
|
||||
|
||||
public String getNsrbsh() {
|
||||
return this.nsrbsh;
|
||||
}
|
||||
|
||||
public void setNsrbsh(String nsrbsh) {
|
||||
this.nsrbsh = nsrbsh;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getGddh() {
|
||||
return this.gddh == null ? "" : this.gddh;
|
||||
}
|
||||
|
||||
public void setGddh(String gddh) {
|
||||
this.gddh = gddh;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
return this.cjrq;
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseBusinessDomain;
|
||||
|
||||
public class SssxSlsqws
|
||||
extends BaseBusinessDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String sssxSlxh;
|
||||
private String wsDjhzXh;
|
||||
|
||||
public String getSssxSlxh() {
|
||||
return this.sssxSlxh;
|
||||
}
|
||||
|
||||
public void setSssxSlxh(String sssxSlxh) {
|
||||
this.sssxSlxh = sssxSlxh;
|
||||
}
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class SzrsSjtb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String sjtbrwXh;
|
||||
private String szrsRwlbDm;
|
||||
private String swryDm;
|
||||
private String ywxh;
|
||||
private String tbbz;
|
||||
private String tbsj;
|
||||
private String szrsYwid;
|
||||
private String errMess;
|
||||
private String tm_user;
|
||||
|
||||
public String getSjtbrwXh() {
|
||||
return this.sjtbrwXh;
|
||||
}
|
||||
|
||||
public void setSjtbrwXh(String sjtbrwXh) {
|
||||
this.sjtbrwXh = sjtbrwXh;
|
||||
}
|
||||
|
||||
public String getSzrsRwlbDm() {
|
||||
return this.szrsRwlbDm;
|
||||
}
|
||||
|
||||
public void setSzrsRwlbDm(String szrsRwlbDm) {
|
||||
this.szrsRwlbDm = szrsRwlbDm;
|
||||
}
|
||||
|
||||
public String getSwryDm() {
|
||||
return this.swryDm;
|
||||
}
|
||||
|
||||
public void setSwryDm(String swryDm) {
|
||||
this.swryDm = swryDm;
|
||||
}
|
||||
|
||||
public String getYwxh() {
|
||||
return this.ywxh;
|
||||
}
|
||||
|
||||
public void setYwxh(String ywxh) {
|
||||
this.ywxh = ywxh;
|
||||
}
|
||||
|
||||
public String getTbbz() {
|
||||
return this.tbbz;
|
||||
}
|
||||
|
||||
public void setTbbz(String tbbz) {
|
||||
this.tbbz = tbbz;
|
||||
}
|
||||
|
||||
public String getTbsj() {
|
||||
return this.tbsj;
|
||||
}
|
||||
|
||||
public void setTbsj(String tbsj) {
|
||||
this.tbsj = tbsj;
|
||||
}
|
||||
|
||||
public String getSzrsYwid() {
|
||||
return this.szrsYwid;
|
||||
}
|
||||
|
||||
public void setSzrsYwid(String szrsYwid) {
|
||||
this.szrsYwid = szrsYwid;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getTm_user() {
|
||||
return this.tm_user;
|
||||
}
|
||||
|
||||
public void setTm_user(String tm_user) {
|
||||
this.tm_user = tm_user;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TicketNsr
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private int uid;
|
||||
private String tkt_uid;
|
||||
private String djxh;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String yxbz;
|
||||
|
||||
public int getUid() {
|
||||
return this.uid;
|
||||
}
|
||||
|
||||
public void setUid(int uid) {
|
||||
this.uid = uid;
|
||||
}
|
||||
|
||||
public String getTkt_uid() {
|
||||
return this.tkt_uid;
|
||||
}
|
||||
|
||||
public void setTkt_uid(String tkt_uid) {
|
||||
this.tkt_uid = tkt_uid;
|
||||
}
|
||||
|
||||
public String getDjxh() {
|
||||
return this.djxh;
|
||||
}
|
||||
|
||||
public void setDjxh(String djxh) {
|
||||
this.djxh = djxh;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,191 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TmFpDkfpsq
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String dkfpsqXh;
|
||||
private String dkfpsqlxDm;
|
||||
private Long userid;
|
||||
private String sqrq;
|
||||
private String sqsj;
|
||||
private String fkfmc;
|
||||
private String fkfzjhm;
|
||||
private String fkfdz;
|
||||
private String fkfdh;
|
||||
private String fkfyhmc;
|
||||
private String fkfyhzh;
|
||||
private String skfmc;
|
||||
private String skfzjhm;
|
||||
private String skfdz;
|
||||
private String skfdh;
|
||||
private String skfyhmc;
|
||||
private String skfyhzh;
|
||||
private String sqly;
|
||||
private Double kpje;
|
||||
private String yhm;
|
||||
|
||||
public String getDkfpsqXh() {
|
||||
return this.dkfpsqXh;
|
||||
}
|
||||
|
||||
public void setDkfpsqXh(String dkfpsqXh) {
|
||||
this.dkfpsqXh = dkfpsqXh;
|
||||
}
|
||||
|
||||
public String getDkfpsqlxDm() {
|
||||
return this.dkfpsqlxDm;
|
||||
}
|
||||
|
||||
public void setDkfpsqlxDm(String dkfpsqlxDm) {
|
||||
this.dkfpsqlxDm = dkfpsqlxDm;
|
||||
}
|
||||
|
||||
public Long getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(Long userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
return this.sqrq;
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getSqsj() {
|
||||
return this.sqsj;
|
||||
}
|
||||
|
||||
public void setSqsj(String sqsj) {
|
||||
this.sqsj = sqsj;
|
||||
}
|
||||
|
||||
public String getFkfmc() {
|
||||
return this.fkfmc;
|
||||
}
|
||||
|
||||
public void setFkfmc(String fkfmc) {
|
||||
this.fkfmc = fkfmc;
|
||||
}
|
||||
|
||||
public String getFkfzjhm() {
|
||||
return this.fkfzjhm;
|
||||
}
|
||||
|
||||
public void setFkfzjhm(String fkfzjhm) {
|
||||
this.fkfzjhm = fkfzjhm;
|
||||
}
|
||||
|
||||
public String getFkfdz() {
|
||||
return this.fkfdz;
|
||||
}
|
||||
|
||||
public void setFkfdz(String fkfdz) {
|
||||
this.fkfdz = fkfdz;
|
||||
}
|
||||
|
||||
public String getFkfdh() {
|
||||
return this.fkfdh;
|
||||
}
|
||||
|
||||
public void setFkfdh(String fkfdh) {
|
||||
this.fkfdh = fkfdh;
|
||||
}
|
||||
|
||||
public String getFkfyhmc() {
|
||||
return this.fkfyhmc;
|
||||
}
|
||||
|
||||
public void setFkfyhmc(String fkfyhmc) {
|
||||
this.fkfyhmc = fkfyhmc;
|
||||
}
|
||||
|
||||
public String getFkfyhzh() {
|
||||
return this.fkfyhzh;
|
||||
}
|
||||
|
||||
public void setFkfyhzh(String fkfyhzh) {
|
||||
this.fkfyhzh = fkfyhzh;
|
||||
}
|
||||
|
||||
public String getSkfmc() {
|
||||
return this.skfmc;
|
||||
}
|
||||
|
||||
public void setSkfmc(String skfmc) {
|
||||
this.skfmc = skfmc;
|
||||
}
|
||||
|
||||
public String getSkfzjhm() {
|
||||
return this.skfzjhm;
|
||||
}
|
||||
|
||||
public void setSkfzjhm(String skfzjhm) {
|
||||
this.skfzjhm = skfzjhm;
|
||||
}
|
||||
|
||||
public String getSkfdz() {
|
||||
return this.skfdz;
|
||||
}
|
||||
|
||||
public void setSkfdz(String skfdz) {
|
||||
this.skfdz = skfdz;
|
||||
}
|
||||
|
||||
public String getSkfdh() {
|
||||
return this.skfdh;
|
||||
}
|
||||
|
||||
public void setSkfdh(String skfdh) {
|
||||
this.skfdh = skfdh;
|
||||
}
|
||||
|
||||
public String getSkfyhmc() {
|
||||
return this.skfyhmc;
|
||||
}
|
||||
|
||||
public void setSkfyhmc(String skfyhmc) {
|
||||
this.skfyhmc = skfyhmc;
|
||||
}
|
||||
|
||||
public String getSkfyhzh() {
|
||||
return this.skfyhzh;
|
||||
}
|
||||
|
||||
public void setSkfyhzh(String skfyhzh) {
|
||||
this.skfyhzh = skfyhzh;
|
||||
}
|
||||
|
||||
public String getSqly() {
|
||||
return this.sqly;
|
||||
}
|
||||
|
||||
public void setSqly(String sqly) {
|
||||
this.sqly = sqly;
|
||||
}
|
||||
|
||||
public Double getKpje() {
|
||||
return this.kpje;
|
||||
}
|
||||
|
||||
public String getYhm() {
|
||||
return this.yhm;
|
||||
}
|
||||
|
||||
public void setKpje(Double kpje) {
|
||||
this.kpje = kpje;
|
||||
}
|
||||
|
||||
public void setYhm(String yhm) {
|
||||
this.yhm = yhm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TmFpDkfpsqZb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String dkfpsqXh;
|
||||
private String xh;
|
||||
private String pm;
|
||||
private String gg;
|
||||
private String dw;
|
||||
private Double sl;
|
||||
private Double dj;
|
||||
private Double je;
|
||||
private Double sli;
|
||||
private Double se;
|
||||
|
||||
public String getDkfpsqXh() {
|
||||
return this.dkfpsqXh;
|
||||
}
|
||||
|
||||
public void setDkfpsqXh(String dkfpsqXh) {
|
||||
this.dkfpsqXh = dkfpsqXh;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
|
||||
public String getPm() {
|
||||
return this.pm;
|
||||
}
|
||||
|
||||
public void setPm(String pm) {
|
||||
this.pm = pm;
|
||||
}
|
||||
|
||||
public String getGg() {
|
||||
return this.gg;
|
||||
}
|
||||
|
||||
public void setGg(String gg) {
|
||||
this.gg = gg;
|
||||
}
|
||||
|
||||
public String getDw() {
|
||||
return this.dw;
|
||||
}
|
||||
|
||||
public void setDw(String dw) {
|
||||
this.dw = dw;
|
||||
}
|
||||
|
||||
public Double getSl() {
|
||||
return this.sl;
|
||||
}
|
||||
|
||||
public void setSl(Double sl) {
|
||||
this.sl = sl;
|
||||
}
|
||||
|
||||
public Double getDj() {
|
||||
return this.dj;
|
||||
}
|
||||
|
||||
public void setDj(Double dj) {
|
||||
this.dj = dj;
|
||||
}
|
||||
|
||||
public Double getJe() {
|
||||
return this.je;
|
||||
}
|
||||
|
||||
public void setJe(Double je) {
|
||||
this.je = je;
|
||||
}
|
||||
|
||||
public Double getSli() {
|
||||
return this.sli;
|
||||
}
|
||||
|
||||
public void setSli(Double sli) {
|
||||
this.sli = sli;
|
||||
}
|
||||
|
||||
public Double getSe() {
|
||||
return this.se;
|
||||
}
|
||||
|
||||
public void setSe(Double se) {
|
||||
this.se = se;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TmUserYjfk
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String djXh;
|
||||
private Long userid;
|
||||
private String fkyj;
|
||||
private String rq;
|
||||
|
||||
public String getDjXh() {
|
||||
return this.djXh;
|
||||
}
|
||||
|
||||
public void setDjXh(String djXh) {
|
||||
this.djXh = djXh;
|
||||
}
|
||||
|
||||
public Long getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(Long userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getFkyj() {
|
||||
return this.fkyj;
|
||||
}
|
||||
|
||||
public void setFkyj(String fkyj) {
|
||||
this.fkyj = fkyj;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class TmWssxKjLy
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String xh;
|
||||
private String kjXh;
|
||||
private String lysj;
|
||||
private String lynr;
|
||||
private String lyr;
|
||||
private String lxfs;
|
||||
private String fwxt;
|
||||
private String userid;
|
||||
|
||||
public String getFwxt() {
|
||||
return this.fwxt;
|
||||
}
|
||||
|
||||
public void setFwxt(String fwxt) {
|
||||
this.fwxt = fwxt;
|
||||
}
|
||||
|
||||
public String getKjXh() {
|
||||
return this.kjXh;
|
||||
}
|
||||
|
||||
public void setKjXh(String kjXh) {
|
||||
this.kjXh = kjXh;
|
||||
}
|
||||
|
||||
public String getLxfs() {
|
||||
return this.lxfs;
|
||||
}
|
||||
|
||||
public void setLxfs(String lxfs) {
|
||||
this.lxfs = lxfs;
|
||||
}
|
||||
|
||||
public String getLynr() {
|
||||
return this.lynr;
|
||||
}
|
||||
|
||||
public void setLynr(String lynr) {
|
||||
this.lynr = lynr;
|
||||
}
|
||||
|
||||
public String getLyr() {
|
||||
return this.lyr;
|
||||
}
|
||||
|
||||
public void setLyr(String lyr) {
|
||||
this.lyr = lyr;
|
||||
}
|
||||
|
||||
public String getLysj() {
|
||||
return this.lysj;
|
||||
}
|
||||
|
||||
public void setLysj(String lysj) {
|
||||
this.lysj = lysj;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,227 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WsDjWjzkjsq
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String frxm;
|
||||
private String sfzjmc;
|
||||
private String sfzjhm;
|
||||
private String lxr;
|
||||
private String lxdh;
|
||||
private String djzclxMc;
|
||||
private String swdjd;
|
||||
private String wcjydlx;
|
||||
private String wcjyd;
|
||||
private String yxqQ;
|
||||
private String yxqZ;
|
||||
private String jyfs;
|
||||
private String xmmc;
|
||||
private String htje;
|
||||
private String sqrq;
|
||||
private String yxbz;
|
||||
private String wjzSqdbh;
|
||||
private String jg;
|
||||
private String zg;
|
||||
private String nh;
|
||||
private String wh;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getFrxm() {
|
||||
return this.frxm;
|
||||
}
|
||||
|
||||
public void setFrxm(String frxm) {
|
||||
this.frxm = frxm;
|
||||
}
|
||||
|
||||
public String getSfzjmc() {
|
||||
return this.sfzjmc;
|
||||
}
|
||||
|
||||
public void setSfzjmc(String sfzjmc) {
|
||||
this.sfzjmc = sfzjmc;
|
||||
}
|
||||
|
||||
public String getSfzjhm() {
|
||||
return this.sfzjhm;
|
||||
}
|
||||
|
||||
public void setSfzjhm(String sfzjhm) {
|
||||
this.sfzjhm = sfzjhm;
|
||||
}
|
||||
|
||||
public String getLxr() {
|
||||
return this.lxr;
|
||||
}
|
||||
|
||||
public void setLxr(String lxr) {
|
||||
this.lxr = lxr;
|
||||
}
|
||||
|
||||
public String getLxdh() {
|
||||
return this.lxdh;
|
||||
}
|
||||
|
||||
public void setLxdh(String lxdh) {
|
||||
this.lxdh = lxdh;
|
||||
}
|
||||
|
||||
public String getDjzclxMc() {
|
||||
return this.djzclxMc;
|
||||
}
|
||||
|
||||
public void setDjzclxMc(String djzclxMc) {
|
||||
this.djzclxMc = djzclxMc;
|
||||
}
|
||||
|
||||
public String getSwdjd() {
|
||||
return this.swdjd;
|
||||
}
|
||||
|
||||
public void setSwdjd(String swdjd) {
|
||||
this.swdjd = swdjd;
|
||||
}
|
||||
|
||||
public String getWcjydlx() {
|
||||
return this.wcjydlx;
|
||||
}
|
||||
|
||||
public void setWcjydlx(String wcjydlx) {
|
||||
this.wcjydlx = wcjydlx;
|
||||
}
|
||||
|
||||
public String getWcjyd() {
|
||||
return this.wcjyd;
|
||||
}
|
||||
|
||||
public void setWcjyd(String wcjyd) {
|
||||
this.wcjyd = wcjyd;
|
||||
}
|
||||
|
||||
public String getYxqQ() {
|
||||
return this.yxqQ;
|
||||
}
|
||||
|
||||
public void setYxqQ(String yxqQ) {
|
||||
this.yxqQ = yxqQ;
|
||||
}
|
||||
|
||||
public String getYxqZ() {
|
||||
return this.yxqZ;
|
||||
}
|
||||
|
||||
public void setYxqZ(String yxqZ) {
|
||||
this.yxqZ = yxqZ;
|
||||
}
|
||||
|
||||
public String getJyfs() {
|
||||
return this.jyfs;
|
||||
}
|
||||
|
||||
public void setJyfs(String jyfs) {
|
||||
this.jyfs = jyfs;
|
||||
}
|
||||
|
||||
public String getXmmc() {
|
||||
return this.xmmc;
|
||||
}
|
||||
|
||||
public void setXmmc(String xmmc) {
|
||||
this.xmmc = xmmc;
|
||||
}
|
||||
|
||||
public String getHtje() {
|
||||
return this.htje;
|
||||
}
|
||||
|
||||
public void setHtje(String htje) {
|
||||
this.htje = htje;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
return this.sqrq;
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getWjzSqdbh() {
|
||||
return this.wjzSqdbh;
|
||||
}
|
||||
|
||||
public void setWjzSqdbh(String wjzSqdbh) {
|
||||
this.wjzSqdbh = wjzSqdbh;
|
||||
}
|
||||
|
||||
public String getJg() {
|
||||
return this.jg;
|
||||
}
|
||||
|
||||
public void setJg(String jg) {
|
||||
this.jg = jg;
|
||||
}
|
||||
|
||||
public String getZg() {
|
||||
return this.zg;
|
||||
}
|
||||
|
||||
public void setZg(String zg) {
|
||||
this.zg = zg;
|
||||
}
|
||||
|
||||
public String getNh() {
|
||||
return this.nh;
|
||||
}
|
||||
|
||||
public void setNh(String nh) {
|
||||
this.nh = nh;
|
||||
}
|
||||
|
||||
public String getWh() {
|
||||
return this.wh;
|
||||
}
|
||||
|
||||
public void setWh(String wh) {
|
||||
this.wh = wh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WsDjWjzkjsqZb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String xh;
|
||||
private String xmlx;
|
||||
private String sl;
|
||||
private String dd;
|
||||
private String je;
|
||||
private String mc;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
|
||||
public String getXmlx() {
|
||||
return this.xmlx;
|
||||
}
|
||||
|
||||
public void setXmlx(String xmlx) {
|
||||
this.xmlx = xmlx;
|
||||
}
|
||||
|
||||
public String getSl() {
|
||||
return this.sl;
|
||||
}
|
||||
|
||||
public void setSl(String sl) {
|
||||
this.sl = sl;
|
||||
}
|
||||
|
||||
public String getDd() {
|
||||
return this.dd;
|
||||
}
|
||||
|
||||
public void setDd(String dd) {
|
||||
this.dd = dd;
|
||||
}
|
||||
|
||||
public String getJe() {
|
||||
return this.je;
|
||||
}
|
||||
|
||||
public void setJe(String je) {
|
||||
this.je = je;
|
||||
}
|
||||
|
||||
public String getMc() {
|
||||
return this.mc;
|
||||
}
|
||||
|
||||
public void setMc(String mc) {
|
||||
this.mc = mc;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,329 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseBusinessDomain;
|
||||
import com.hst.framework.util.HstDateUtil;
|
||||
|
||||
public class WsDjhz
|
||||
extends BaseBusinessDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String nsrsbh;
|
||||
private String nsrdzdah;
|
||||
private String nsrSwjgDm;
|
||||
private String jbdm;
|
||||
private String wsDm;
|
||||
private String url;
|
||||
private String bcbz;
|
||||
private String lsbz;
|
||||
private String sssqq;
|
||||
private String sssqz;
|
||||
private String hyDm;
|
||||
private String sdsszBz;
|
||||
private String zzsqylxDm;
|
||||
private String djzclxDm;
|
||||
private String swdjblxDm;
|
||||
private String gtBz;
|
||||
private String rwid;
|
||||
private String cjrDm;
|
||||
private String cjrq;
|
||||
private String xgrDm;
|
||||
private String xgrq;
|
||||
private String yxbz;
|
||||
private String cftj;
|
||||
private String sxDm;
|
||||
private String sxbz;
|
||||
private String xttsXh;
|
||||
private String sssxSlxh;
|
||||
private String wsslbh;
|
||||
private String sssxDm;
|
||||
private String urlEdit;
|
||||
private String urlPrint;
|
||||
private String urlView;
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrdzdah() {
|
||||
return this.nsrdzdah;
|
||||
}
|
||||
|
||||
public void setNsrdzdah(String nsrdzdah) {
|
||||
this.nsrdzdah = nsrdzdah;
|
||||
}
|
||||
|
||||
public String getNsrSwjgDm() {
|
||||
return this.nsrSwjgDm;
|
||||
}
|
||||
|
||||
public void setNsrSwjgDm(String nsrSwjgDm) {
|
||||
this.nsrSwjgDm = nsrSwjgDm;
|
||||
}
|
||||
|
||||
public String getJbdm() {
|
||||
return this.jbdm;
|
||||
}
|
||||
|
||||
public void setJbdm(String jbdm) {
|
||||
this.jbdm = jbdm;
|
||||
}
|
||||
|
||||
public String getWsDm() {
|
||||
return this.wsDm;
|
||||
}
|
||||
|
||||
public void setWsDm(String wsDm) {
|
||||
this.wsDm = wsDm;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getBcbz() {
|
||||
return this.bcbz;
|
||||
}
|
||||
|
||||
public void setBcbz(String bcbz) {
|
||||
this.bcbz = bcbz;
|
||||
}
|
||||
|
||||
public String getLsbz() {
|
||||
return this.lsbz;
|
||||
}
|
||||
|
||||
public void setLsbz(String lsbz) {
|
||||
this.lsbz = lsbz;
|
||||
}
|
||||
|
||||
public String getSssqq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.sssqq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.sssqq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSssqq(String sssqq) {
|
||||
this.sssqq = sssqq;
|
||||
}
|
||||
|
||||
public String getSssqz() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.sssqz);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.sssqz;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSssqz(String sssqz) {
|
||||
this.sssqz = sssqz;
|
||||
}
|
||||
|
||||
public String getHyDm() {
|
||||
return this.hyDm;
|
||||
}
|
||||
|
||||
public void setHyDm(String hyDm) {
|
||||
this.hyDm = hyDm;
|
||||
}
|
||||
|
||||
public String getSdsszBz() {
|
||||
return this.sdsszBz;
|
||||
}
|
||||
|
||||
public void setSdsszBz(String sdsszBz) {
|
||||
this.sdsszBz = sdsszBz;
|
||||
}
|
||||
|
||||
public String getZzsqylxDm() {
|
||||
return this.zzsqylxDm;
|
||||
}
|
||||
|
||||
public void setZzsqylxDm(String zzsqylxDm) {
|
||||
this.zzsqylxDm = zzsqylxDm;
|
||||
}
|
||||
|
||||
public String getDjzclxDm() {
|
||||
return this.djzclxDm;
|
||||
}
|
||||
|
||||
public void setDjzclxDm(String djzclxDm) {
|
||||
this.djzclxDm = djzclxDm;
|
||||
}
|
||||
|
||||
public String getSwdjblxDm() {
|
||||
return this.swdjblxDm;
|
||||
}
|
||||
|
||||
public void setSwdjblxDm(String swdjblxDm) {
|
||||
this.swdjblxDm = swdjblxDm;
|
||||
}
|
||||
|
||||
public String getGtBz() {
|
||||
return this.gtBz;
|
||||
}
|
||||
|
||||
public void setGtBz(String gtBz) {
|
||||
this.gtBz = gtBz;
|
||||
}
|
||||
|
||||
public String getRwid() {
|
||||
return this.rwid;
|
||||
}
|
||||
|
||||
public void setRwid(String rwid) {
|
||||
this.rwid = rwid;
|
||||
}
|
||||
|
||||
public String getCjrDm() {
|
||||
return this.cjrDm;
|
||||
}
|
||||
|
||||
public void setCjrDm(String cjrDm) {
|
||||
this.cjrDm = cjrDm;
|
||||
}
|
||||
|
||||
public String getCjrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.cjrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.cjrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setCjrq(String cjrq) {
|
||||
this.cjrq = cjrq;
|
||||
}
|
||||
|
||||
public String getXgrDm() {
|
||||
return this.xgrDm;
|
||||
}
|
||||
|
||||
public void setXgrDm(String xgrDm) {
|
||||
this.xgrDm = xgrDm;
|
||||
}
|
||||
|
||||
public String getXgrq() {
|
||||
try {
|
||||
return HstDateUtil.getYyyyMmdd(this.xgrq);
|
||||
}
|
||||
catch (Exception exception) {
|
||||
return this.xgrq;
|
||||
}
|
||||
}
|
||||
|
||||
public void setXgrq(String xgrq) {
|
||||
this.xgrq = xgrq;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getCftj() {
|
||||
return this.cftj;
|
||||
}
|
||||
|
||||
public void setCftj(String cftj) {
|
||||
this.cftj = cftj;
|
||||
}
|
||||
|
||||
public String getSxDm() {
|
||||
return this.sxDm;
|
||||
}
|
||||
|
||||
public void setSxDm(String sxDm) {
|
||||
this.sxDm = sxDm;
|
||||
}
|
||||
|
||||
public String getSxbz() {
|
||||
return this.sxbz;
|
||||
}
|
||||
|
||||
public void setSxbz(String sxbz) {
|
||||
this.sxbz = sxbz;
|
||||
}
|
||||
|
||||
public String getXttsXh() {
|
||||
return this.xttsXh;
|
||||
}
|
||||
|
||||
public void setXttsXh(String xttsXh) {
|
||||
this.xttsXh = xttsXh;
|
||||
}
|
||||
|
||||
public String getSssxSlxh() {
|
||||
return this.sssxSlxh;
|
||||
}
|
||||
|
||||
public void setSssxSlxh(String sssxSlxh) {
|
||||
this.sssxSlxh = sssxSlxh;
|
||||
}
|
||||
|
||||
public String getWsslbh() {
|
||||
return this.wsslbh;
|
||||
}
|
||||
|
||||
public void setWsslbh(String wsslbh) {
|
||||
this.wsslbh = wsslbh;
|
||||
}
|
||||
|
||||
public String getSssxDm() {
|
||||
return this.sssxDm;
|
||||
}
|
||||
|
||||
public void setSssxDm(String sssxDm) {
|
||||
this.sssxDm = sssxDm;
|
||||
}
|
||||
|
||||
public String getUrlEdit() {
|
||||
return this.urlEdit;
|
||||
}
|
||||
|
||||
public void setUrlEdit(String urlEdit) {
|
||||
this.urlEdit = urlEdit;
|
||||
}
|
||||
|
||||
public String getUrlPrint() {
|
||||
return this.urlPrint;
|
||||
}
|
||||
|
||||
public void setUrlPrint(String urlPrint) {
|
||||
this.urlPrint = urlPrint;
|
||||
}
|
||||
|
||||
public String getUrlView() {
|
||||
return this.urlView;
|
||||
}
|
||||
|
||||
public void setUrlView(String urlView) {
|
||||
this.urlView = urlView;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,650 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WsFpDkfpsqLsb
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String wsDjhzXh;
|
||||
private String dkfpsqlxDm;
|
||||
private String sqrzjhm;
|
||||
private String sqrmc;
|
||||
private String sqrlb;
|
||||
private String sqrq;
|
||||
private String sqsj;
|
||||
private String fkfmc;
|
||||
private String fkfzjhm;
|
||||
private String fkfdz;
|
||||
private String fkfdh;
|
||||
private String fkfyhmc;
|
||||
private String fkfyhzh;
|
||||
private String skfmc;
|
||||
private String skfzjhm;
|
||||
private String skfdz;
|
||||
private String skfdh;
|
||||
private String skfyhmc;
|
||||
private String skfyhzh;
|
||||
private String shrmc;
|
||||
private String shrsbh;
|
||||
private String fhrmc;
|
||||
private String fhrsbh;
|
||||
private String qzdz;
|
||||
private String clzl;
|
||||
private String clhm;
|
||||
private String ccdw;
|
||||
private String kpje;
|
||||
private String jshj;
|
||||
private String sehj;
|
||||
private String sqly;
|
||||
private String dkfpsqlbDm;
|
||||
private String lxrDjxh;
|
||||
private String yjdzDjxxXh;
|
||||
private String bz;
|
||||
private String kjFpdm;
|
||||
private String kjFphm;
|
||||
private String kjFprq;
|
||||
private String kjGsSphm;
|
||||
private String kjGsSprq;
|
||||
private String kjDsSphm;
|
||||
private String kjDsSprq;
|
||||
private String swjgDm;
|
||||
private String kjfprmc;
|
||||
private String kjsprmc;
|
||||
private String fddbr;
|
||||
private String cwfzr;
|
||||
private String txr;
|
||||
private String fkflxDm;
|
||||
private String yshwxx;
|
||||
private String fkfzjlxDm;
|
||||
private String kplbDm;
|
||||
private String tmDkfpsqXh;
|
||||
private String kddh;
|
||||
private String dkfpSqdbh;
|
||||
private String sfjm;
|
||||
private String jmslx;
|
||||
private String hwlwfwlx;
|
||||
private String fkfyhdm;
|
||||
private String skfyhdm;
|
||||
private String fkfdjxh;
|
||||
private String skfdjxh;
|
||||
private String jmsyy;
|
||||
private String sfyddk;
|
||||
private String jmse;
|
||||
private String bsdtDjxh;
|
||||
private String nsrSwjgDm;
|
||||
private String jbdm;
|
||||
private String zspmDm;
|
||||
private String sjlyDm;
|
||||
private String hjse;
|
||||
|
||||
public String getHjse() {
|
||||
return this.hjse;
|
||||
}
|
||||
|
||||
public void setHjse(String hjse) {
|
||||
this.hjse = hjse;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getCcdw() {
|
||||
return this.ccdw;
|
||||
}
|
||||
|
||||
public void setCcdw(String ccdw) {
|
||||
this.ccdw = ccdw;
|
||||
}
|
||||
|
||||
public String getClhm() {
|
||||
return this.clhm;
|
||||
}
|
||||
|
||||
public void setClhm(String clhm) {
|
||||
this.clhm = clhm;
|
||||
}
|
||||
|
||||
public String getClzl() {
|
||||
return this.clzl;
|
||||
}
|
||||
|
||||
public void setClzl(String clzl) {
|
||||
this.clzl = clzl;
|
||||
}
|
||||
|
||||
public String getDkfpsqlbDm() {
|
||||
return this.dkfpsqlbDm;
|
||||
}
|
||||
|
||||
public void setDkfpsqlbDm(String dkfpsqlbDm) {
|
||||
this.dkfpsqlbDm = dkfpsqlbDm;
|
||||
}
|
||||
|
||||
public String getDkfpsqlxDm() {
|
||||
return this.dkfpsqlxDm;
|
||||
}
|
||||
|
||||
public void setDkfpsqlxDm(String dkfpsqlxDm) {
|
||||
this.dkfpsqlxDm = dkfpsqlxDm;
|
||||
}
|
||||
|
||||
public String getFhrmc() {
|
||||
return this.fhrmc;
|
||||
}
|
||||
|
||||
public void setFhrmc(String fhrmc) {
|
||||
this.fhrmc = fhrmc;
|
||||
}
|
||||
|
||||
public String getFhrsbh() {
|
||||
return this.fhrsbh;
|
||||
}
|
||||
|
||||
public void setFhrsbh(String fhrsbh) {
|
||||
this.fhrsbh = fhrsbh;
|
||||
}
|
||||
|
||||
public String getFkfdh() {
|
||||
return this.fkfdh;
|
||||
}
|
||||
|
||||
public void setFkfdh(String fkfdh) {
|
||||
this.fkfdh = fkfdh;
|
||||
}
|
||||
|
||||
public String getFkfdz() {
|
||||
return this.fkfdz;
|
||||
}
|
||||
|
||||
public void setFkfdz(String fkfdz) {
|
||||
this.fkfdz = fkfdz;
|
||||
}
|
||||
|
||||
public String getFkfmc() {
|
||||
return this.fkfmc;
|
||||
}
|
||||
|
||||
public void setFkfmc(String fkfmc) {
|
||||
this.fkfmc = fkfmc;
|
||||
}
|
||||
|
||||
public String getFkfyhmc() {
|
||||
return this.fkfyhmc;
|
||||
}
|
||||
|
||||
public void setFkfyhmc(String fkfyhmc) {
|
||||
this.fkfyhmc = fkfyhmc;
|
||||
}
|
||||
|
||||
public String getFkfyhzh() {
|
||||
return this.fkfyhzh;
|
||||
}
|
||||
|
||||
public void setFkfyhzh(String fkfyhzh) {
|
||||
this.fkfyhzh = fkfyhzh;
|
||||
}
|
||||
|
||||
public String getFkfzjhm() {
|
||||
return this.fkfzjhm;
|
||||
}
|
||||
|
||||
public void setFkfzjhm(String fkfzjhm) {
|
||||
this.fkfzjhm = fkfzjhm;
|
||||
}
|
||||
|
||||
public String getJshj() {
|
||||
return this.jshj;
|
||||
}
|
||||
|
||||
public void setJshj(String jshj) {
|
||||
this.jshj = jshj;
|
||||
}
|
||||
|
||||
public String getKjDsSphm() {
|
||||
return this.kjDsSphm;
|
||||
}
|
||||
|
||||
public void setKjDsSphm(String kjDsSphm) {
|
||||
this.kjDsSphm = kjDsSphm;
|
||||
}
|
||||
|
||||
public String getKjDsSprq() {
|
||||
return this.kjDsSprq;
|
||||
}
|
||||
|
||||
public void setKjDsSprq(String kjDsSprq) {
|
||||
this.kjDsSprq = kjDsSprq;
|
||||
}
|
||||
|
||||
public String getKjFpdm() {
|
||||
return this.kjFpdm;
|
||||
}
|
||||
|
||||
public void setKjFpdm(String kjFpdm) {
|
||||
this.kjFpdm = kjFpdm;
|
||||
}
|
||||
|
||||
public String getKjFphm() {
|
||||
return this.kjFphm;
|
||||
}
|
||||
|
||||
public void setKjFphm(String kjFphm) {
|
||||
this.kjFphm = kjFphm;
|
||||
}
|
||||
|
||||
public String getKjFprq() {
|
||||
return this.kjFprq;
|
||||
}
|
||||
|
||||
public void setKjFprq(String kjFprq) {
|
||||
this.kjFprq = kjFprq;
|
||||
}
|
||||
|
||||
public String getKjGsSphm() {
|
||||
return this.kjGsSphm;
|
||||
}
|
||||
|
||||
public void setKjGsSphm(String kjGsSphm) {
|
||||
this.kjGsSphm = kjGsSphm;
|
||||
}
|
||||
|
||||
public String getKjGsSprq() {
|
||||
return this.kjGsSprq;
|
||||
}
|
||||
|
||||
public void setKjGsSprq(String kjGsSprq) {
|
||||
this.kjGsSprq = kjGsSprq;
|
||||
}
|
||||
|
||||
public String getKpje() {
|
||||
return this.kpje;
|
||||
}
|
||||
|
||||
public void setKpje(String kpje) {
|
||||
this.kpje = kpje;
|
||||
}
|
||||
|
||||
public String getLxrDjxh() {
|
||||
return this.lxrDjxh;
|
||||
}
|
||||
|
||||
public void setLxrDjxh(String lxrDjxh) {
|
||||
this.lxrDjxh = lxrDjxh;
|
||||
}
|
||||
|
||||
public String getQzdz() {
|
||||
return this.qzdz;
|
||||
}
|
||||
|
||||
public void setQzdz(String qzdz) {
|
||||
this.qzdz = qzdz;
|
||||
}
|
||||
|
||||
public String getSehj() {
|
||||
return this.sehj;
|
||||
}
|
||||
|
||||
public void setSehj(String sehj) {
|
||||
this.sehj = sehj;
|
||||
}
|
||||
|
||||
public String getShrmc() {
|
||||
return this.shrmc;
|
||||
}
|
||||
|
||||
public void setShrmc(String shrmc) {
|
||||
this.shrmc = shrmc;
|
||||
}
|
||||
|
||||
public String getShrsbh() {
|
||||
return this.shrsbh;
|
||||
}
|
||||
|
||||
public void setShrsbh(String shrsbh) {
|
||||
this.shrsbh = shrsbh;
|
||||
}
|
||||
|
||||
public String getSkfdh() {
|
||||
return this.skfdh;
|
||||
}
|
||||
|
||||
public void setSkfdh(String skfdh) {
|
||||
this.skfdh = skfdh;
|
||||
}
|
||||
|
||||
public String getSkfdz() {
|
||||
return this.skfdz;
|
||||
}
|
||||
|
||||
public void setSkfdz(String skfdz) {
|
||||
this.skfdz = skfdz;
|
||||
}
|
||||
|
||||
public String getSkfmc() {
|
||||
return this.skfmc;
|
||||
}
|
||||
|
||||
public void setSkfmc(String skfmc) {
|
||||
this.skfmc = skfmc;
|
||||
}
|
||||
|
||||
public String getSkfyhmc() {
|
||||
return this.skfyhmc;
|
||||
}
|
||||
|
||||
public void setSkfyhmc(String skfyhmc) {
|
||||
this.skfyhmc = skfyhmc;
|
||||
}
|
||||
|
||||
public String getSkfyhzh() {
|
||||
return this.skfyhzh;
|
||||
}
|
||||
|
||||
public void setSkfyhzh(String skfyhzh) {
|
||||
this.skfyhzh = skfyhzh;
|
||||
}
|
||||
|
||||
public String getSkfzjhm() {
|
||||
return this.skfzjhm;
|
||||
}
|
||||
|
||||
public void setSkfzjhm(String skfzjhm) {
|
||||
this.skfzjhm = skfzjhm;
|
||||
}
|
||||
|
||||
public String getSqly() {
|
||||
return this.sqly;
|
||||
}
|
||||
|
||||
public void setSqly(String sqly) {
|
||||
this.sqly = sqly;
|
||||
}
|
||||
|
||||
public String getSqrq() {
|
||||
return this.sqrq;
|
||||
}
|
||||
|
||||
public void setSqrq(String sqrq) {
|
||||
this.sqrq = sqrq;
|
||||
}
|
||||
|
||||
public String getSqrzjhm() {
|
||||
return this.sqrzjhm;
|
||||
}
|
||||
|
||||
public void setSqrzjhm(String sqrzjhm) {
|
||||
this.sqrzjhm = sqrzjhm;
|
||||
}
|
||||
|
||||
public String getSqrmc() {
|
||||
return this.sqrmc;
|
||||
}
|
||||
|
||||
public void setSqrmc(String sqrmc) {
|
||||
this.sqrmc = sqrmc;
|
||||
}
|
||||
|
||||
public String getSqrlb() {
|
||||
return this.sqrlb;
|
||||
}
|
||||
|
||||
public void setSqrlb(String sqrlb) {
|
||||
this.sqrlb = sqrlb;
|
||||
}
|
||||
|
||||
public String getSqsj() {
|
||||
return this.sqsj;
|
||||
}
|
||||
|
||||
public void setSqsj(String sqsj) {
|
||||
this.sqsj = sqsj;
|
||||
}
|
||||
|
||||
public String getYjdzDjxxXh() {
|
||||
return this.yjdzDjxxXh;
|
||||
}
|
||||
|
||||
public void setYjdzDjxxXh(String yjdzDjxxXh) {
|
||||
this.yjdzDjxxXh = yjdzDjxxXh;
|
||||
}
|
||||
|
||||
public String getCwfzr() {
|
||||
return this.cwfzr;
|
||||
}
|
||||
|
||||
public void setCwfzr(String cwfzr) {
|
||||
this.cwfzr = cwfzr;
|
||||
}
|
||||
|
||||
public String getFddbr() {
|
||||
return this.fddbr;
|
||||
}
|
||||
|
||||
public void setFddbr(String fddbr) {
|
||||
this.fddbr = fddbr;
|
||||
}
|
||||
|
||||
public String getTxr() {
|
||||
return this.txr;
|
||||
}
|
||||
|
||||
public void setTxr(String txr) {
|
||||
this.txr = txr;
|
||||
}
|
||||
|
||||
public String getYshwxx() {
|
||||
return this.yshwxx;
|
||||
}
|
||||
|
||||
public void setYshwxx(String yshwxx) {
|
||||
this.yshwxx = yshwxx;
|
||||
}
|
||||
|
||||
public String getFkflxDm() {
|
||||
return this.fkflxDm;
|
||||
}
|
||||
|
||||
public void setFkflxDm(String fkflxDm) {
|
||||
this.fkflxDm = fkflxDm;
|
||||
}
|
||||
|
||||
public String getFkfzjlxDm() {
|
||||
return this.fkfzjlxDm;
|
||||
}
|
||||
|
||||
public void setFkfzjlxDm(String fkfzjlxDm) {
|
||||
this.fkfzjlxDm = fkfzjlxDm;
|
||||
}
|
||||
|
||||
public String getKplbDm() {
|
||||
return this.kplbDm;
|
||||
}
|
||||
|
||||
public void setKplbDm(String kplbDm) {
|
||||
this.kplbDm = kplbDm;
|
||||
}
|
||||
|
||||
public String getDkfpSqdbh() {
|
||||
return this.dkfpSqdbh;
|
||||
}
|
||||
|
||||
public void setDkfpSqdbh(String dkfpSqdbh) {
|
||||
this.dkfpSqdbh = dkfpSqdbh;
|
||||
}
|
||||
|
||||
public String getSfjm() {
|
||||
return this.sfjm;
|
||||
}
|
||||
|
||||
public void setSfjm(String sfjm) {
|
||||
this.sfjm = sfjm;
|
||||
}
|
||||
|
||||
public String getJmslx() {
|
||||
return this.jmslx;
|
||||
}
|
||||
|
||||
public void setJmslx(String jmslx) {
|
||||
this.jmslx = jmslx;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getKjfprmc() {
|
||||
return this.kjfprmc;
|
||||
}
|
||||
|
||||
public void setKjfprmc(String kjfprmc) {
|
||||
this.kjfprmc = kjfprmc;
|
||||
}
|
||||
|
||||
public String getKjsprmc() {
|
||||
return this.kjsprmc;
|
||||
}
|
||||
|
||||
public void setKjsprmc(String kjsprmc) {
|
||||
this.kjsprmc = kjsprmc;
|
||||
}
|
||||
|
||||
public String getTmDkfpsqXh() {
|
||||
return this.tmDkfpsqXh;
|
||||
}
|
||||
|
||||
public void setTmDkfpsqXh(String tmDkfpsqXh) {
|
||||
this.tmDkfpsqXh = tmDkfpsqXh;
|
||||
}
|
||||
|
||||
public String getKddh() {
|
||||
return this.kddh;
|
||||
}
|
||||
|
||||
public void setKddh(String kddh) {
|
||||
this.kddh = kddh;
|
||||
}
|
||||
|
||||
public String getHwlwfwlx() {
|
||||
return this.hwlwfwlx;
|
||||
}
|
||||
|
||||
public void setHwlwfwlx(String hwlwfwlx) {
|
||||
this.hwlwfwlx = hwlwfwlx;
|
||||
}
|
||||
|
||||
public String getFkfyhdm() {
|
||||
return this.fkfyhdm;
|
||||
}
|
||||
|
||||
public void setFkfyhdm(String fkfyhdm) {
|
||||
this.fkfyhdm = fkfyhdm;
|
||||
}
|
||||
|
||||
public String getSkfyhdm() {
|
||||
return this.skfyhdm;
|
||||
}
|
||||
|
||||
public void setSkfyhdm(String skfyhdm) {
|
||||
this.skfyhdm = skfyhdm;
|
||||
}
|
||||
|
||||
public String getFkfdjxh() {
|
||||
return this.fkfdjxh;
|
||||
}
|
||||
|
||||
public void setFkfdjxh(String fkfdjxh) {
|
||||
this.fkfdjxh = fkfdjxh;
|
||||
}
|
||||
|
||||
public String getSkfdjxh() {
|
||||
return this.skfdjxh;
|
||||
}
|
||||
|
||||
public void setSkfdjxh(String skfdjxh) {
|
||||
this.skfdjxh = skfdjxh;
|
||||
}
|
||||
|
||||
public String getJmsyy() {
|
||||
return this.jmsyy;
|
||||
}
|
||||
|
||||
public void setJmsyy(String jmsyy) {
|
||||
this.jmsyy = jmsyy;
|
||||
}
|
||||
|
||||
public String getSfyddk() {
|
||||
return this.sfyddk;
|
||||
}
|
||||
|
||||
public void setSfyddk(String sfyddk) {
|
||||
this.sfyddk = sfyddk;
|
||||
}
|
||||
|
||||
public String getJmse() {
|
||||
return this.jmse;
|
||||
}
|
||||
|
||||
public void setJmse(String jmse) {
|
||||
this.jmse = jmse;
|
||||
}
|
||||
|
||||
public String getNsrSwjgDm() {
|
||||
return this.nsrSwjgDm;
|
||||
}
|
||||
|
||||
public void setNsrSwjgDm(String nsrSwjgDm) {
|
||||
this.nsrSwjgDm = nsrSwjgDm;
|
||||
}
|
||||
|
||||
public String getJbdm() {
|
||||
return this.jbdm;
|
||||
}
|
||||
|
||||
public void setJbdm(String jbdm) {
|
||||
this.jbdm = jbdm;
|
||||
}
|
||||
|
||||
public String getZspmDm() {
|
||||
return this.zspmDm;
|
||||
}
|
||||
|
||||
public void setZspmDm(String zspmDm) {
|
||||
this.zspmDm = zspmDm;
|
||||
}
|
||||
|
||||
public String getSjlyDm() {
|
||||
return this.sjlyDm;
|
||||
}
|
||||
|
||||
public void setSjlyDm(String sjlyDm) {
|
||||
this.sjlyDm = sjlyDm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,127 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import com.hst.framework.domain.BaseBusinessDomain;
|
||||
|
||||
public class WsFpDkfpsqLsbZb
|
||||
extends BaseBusinessDomain {
|
||||
private String wsDjhzXh;
|
||||
private String xh;
|
||||
private String pm;
|
||||
private String gg;
|
||||
private String dw;
|
||||
private String sl;
|
||||
private String dj;
|
||||
private String jflc;
|
||||
private String je;
|
||||
private String sli;
|
||||
private String se;
|
||||
private String bz;
|
||||
private String dwslDm;
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getDj() {
|
||||
return this.dj;
|
||||
}
|
||||
|
||||
public void setDj(String dj) {
|
||||
this.dj = dj;
|
||||
}
|
||||
|
||||
public String getDw() {
|
||||
return this.dw;
|
||||
}
|
||||
|
||||
public void setDw(String dw) {
|
||||
this.dw = dw;
|
||||
}
|
||||
|
||||
public String getGg() {
|
||||
return this.gg;
|
||||
}
|
||||
|
||||
public void setGg(String gg) {
|
||||
this.gg = gg;
|
||||
}
|
||||
|
||||
public String getJe() {
|
||||
return this.je;
|
||||
}
|
||||
|
||||
public void setJe(String je) {
|
||||
this.je = je;
|
||||
}
|
||||
|
||||
public String getJflc() {
|
||||
return this.jflc;
|
||||
}
|
||||
|
||||
public void setJflc(String jflc) {
|
||||
this.jflc = jflc;
|
||||
}
|
||||
|
||||
public String getPm() {
|
||||
return this.pm;
|
||||
}
|
||||
|
||||
public void setPm(String pm) {
|
||||
this.pm = pm;
|
||||
}
|
||||
|
||||
public String getSe() {
|
||||
return this.se;
|
||||
}
|
||||
|
||||
public void setSe(String se) {
|
||||
this.se = se;
|
||||
}
|
||||
|
||||
public String getSl() {
|
||||
return this.sl;
|
||||
}
|
||||
|
||||
public void setSl(String sl) {
|
||||
this.sl = sl;
|
||||
}
|
||||
|
||||
public String getSli() {
|
||||
return this.sli;
|
||||
}
|
||||
|
||||
public void setSli(String sli) {
|
||||
this.sli = sli;
|
||||
}
|
||||
|
||||
public String getWsDjhzXh() {
|
||||
return this.wsDjhzXh;
|
||||
}
|
||||
|
||||
public void setWsDjhzXh(String wsDjhzXh) {
|
||||
this.wsDjhzXh = wsDjhzXh;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
|
||||
public String getDwslDm() {
|
||||
return this.dwslDm;
|
||||
}
|
||||
|
||||
public void setDwslDm(String dwslDm) {
|
||||
this.dwslDm = dwslDm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WssxKjfwrz
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String xh;
|
||||
private String kjXh;
|
||||
private String fwsj;
|
||||
private String fwxt;
|
||||
private String userid;
|
||||
|
||||
public String getFwsj() {
|
||||
return this.fwsj;
|
||||
}
|
||||
|
||||
public void setFwsj(String fwsj) {
|
||||
this.fwsj = fwsj;
|
||||
}
|
||||
|
||||
public String getKjXh() {
|
||||
return this.kjXh;
|
||||
}
|
||||
|
||||
public void setKjXh(String kjXh) {
|
||||
this.kjXh = kjXh;
|
||||
}
|
||||
|
||||
public String getFwxt() {
|
||||
return this.fwxt;
|
||||
}
|
||||
|
||||
public void setFwxt(String fwxt) {
|
||||
this.fwxt = fwxt;
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getXh() {
|
||||
return this.xh;
|
||||
}
|
||||
|
||||
public void setXh(String xh) {
|
||||
this.xh = xh;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,119 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WxYgzPxdj
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String djxh;
|
||||
private String xm;
|
||||
private String sjhm;
|
||||
private String sfzhm;
|
||||
private String sflb;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String ss_swjg_dm;
|
||||
private String djrq;
|
||||
private String yxbz;
|
||||
private String wxid;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getDjxh() {
|
||||
return this.djxh;
|
||||
}
|
||||
|
||||
public void setDjxh(String djxh) {
|
||||
this.djxh = djxh;
|
||||
}
|
||||
|
||||
public String getXm() {
|
||||
return this.xm;
|
||||
}
|
||||
|
||||
public void setXm(String xm) {
|
||||
this.xm = xm;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getSs_swjg_dm() {
|
||||
return this.ss_swjg_dm;
|
||||
}
|
||||
|
||||
public void setSs_swjg_dm(String ss_swjg_dm) {
|
||||
this.ss_swjg_dm = ss_swjg_dm;
|
||||
}
|
||||
|
||||
public String getDjrq() {
|
||||
return this.djrq;
|
||||
}
|
||||
|
||||
public void setDjrq(String djrq) {
|
||||
this.djrq = djrq;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
|
||||
public String getWxid() {
|
||||
return this.wxid;
|
||||
}
|
||||
|
||||
public void setWxid(String wxid) {
|
||||
this.wxid = wxid;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getSflb() {
|
||||
return this.sflb;
|
||||
}
|
||||
|
||||
public void setSflb(String sflb) {
|
||||
this.sflb = sflb;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,128 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WxYgzZxd
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String djxh;
|
||||
private String nsrsbh;
|
||||
private String nsrmc;
|
||||
private String zxr;
|
||||
private String zxlb_bslc;
|
||||
private String zxlb_zglc;
|
||||
private String zxlb_zgfg;
|
||||
private String zxnr;
|
||||
private String sjhm;
|
||||
private String mail;
|
||||
private String ss_swjg_dm;
|
||||
private String wxid;
|
||||
private String databaseUsername;
|
||||
|
||||
public String getDjxh() {
|
||||
return this.djxh;
|
||||
}
|
||||
|
||||
public void setDjxh(String djxh) {
|
||||
this.djxh = djxh;
|
||||
}
|
||||
|
||||
public String getDatabaseUsername() {
|
||||
return this.databaseUsername;
|
||||
}
|
||||
|
||||
public void setDatabaseUsername(String databaseUsername) {
|
||||
this.databaseUsername = databaseUsername;
|
||||
}
|
||||
|
||||
public String getMail() {
|
||||
return this.mail;
|
||||
}
|
||||
|
||||
public void setMail(String mail) {
|
||||
this.mail = mail;
|
||||
}
|
||||
|
||||
public String getNsrmc() {
|
||||
return this.nsrmc;
|
||||
}
|
||||
|
||||
public void setNsrmc(String nsrmc) {
|
||||
this.nsrmc = nsrmc;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return this.nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getSjhm() {
|
||||
return this.sjhm;
|
||||
}
|
||||
|
||||
public void setSjhm(String sjhm) {
|
||||
this.sjhm = sjhm;
|
||||
}
|
||||
|
||||
public String getSs_swjg_dm() {
|
||||
return this.ss_swjg_dm;
|
||||
}
|
||||
|
||||
public void setSs_swjg_dm(String ss_swjg_dm) {
|
||||
this.ss_swjg_dm = ss_swjg_dm;
|
||||
}
|
||||
|
||||
public String getWxid() {
|
||||
return this.wxid;
|
||||
}
|
||||
|
||||
public void setWxid(String wxid) {
|
||||
this.wxid = wxid;
|
||||
}
|
||||
|
||||
public String getZxlb_bslc() {
|
||||
return this.zxlb_bslc;
|
||||
}
|
||||
|
||||
public void setZxlb_bslc(String zxlb_bslc) {
|
||||
this.zxlb_bslc = zxlb_bslc;
|
||||
}
|
||||
|
||||
public String getZxlb_zgfg() {
|
||||
return this.zxlb_zgfg;
|
||||
}
|
||||
|
||||
public void setZxlb_zgfg(String zxlb_zgfg) {
|
||||
this.zxlb_zgfg = zxlb_zgfg;
|
||||
}
|
||||
|
||||
public String getZxlb_zglc() {
|
||||
return this.zxlb_zglc;
|
||||
}
|
||||
|
||||
public void setZxlb_zglc(String zxlb_zglc) {
|
||||
this.zxlb_zglc = zxlb_zglc;
|
||||
}
|
||||
|
||||
public String getZxnr() {
|
||||
return this.zxnr;
|
||||
}
|
||||
|
||||
public void setZxnr(String zxnr) {
|
||||
this.zxnr = zxnr;
|
||||
}
|
||||
|
||||
public String getZxr() {
|
||||
return this.zxr;
|
||||
}
|
||||
|
||||
public void setZxr(String zxr) {
|
||||
this.zxr = zxr;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtGt3Log
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String tranId;
|
||||
private String reqTime;
|
||||
private String reqData;
|
||||
private String clbz;
|
||||
private String resTime;
|
||||
private String resData;
|
||||
private String resCode;
|
||||
private String resMess;
|
||||
private String errMess;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getTranId() {
|
||||
return this.tranId;
|
||||
}
|
||||
|
||||
public void setTranId(String tranId) {
|
||||
this.tranId = tranId;
|
||||
}
|
||||
|
||||
public String getReqTime() {
|
||||
return this.reqTime;
|
||||
}
|
||||
|
||||
public void setReqTime(String reqTime) {
|
||||
this.reqTime = reqTime;
|
||||
}
|
||||
|
||||
public String getReqData() {
|
||||
return this.reqData;
|
||||
}
|
||||
|
||||
public void setReqData(String reqData) {
|
||||
this.reqData = reqData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getResTime() {
|
||||
return this.resTime;
|
||||
}
|
||||
|
||||
public void setResTime(String resTime) {
|
||||
this.resTime = resTime;
|
||||
}
|
||||
|
||||
public String getResData() {
|
||||
return this.resData;
|
||||
}
|
||||
|
||||
public void setResData(String resData) {
|
||||
this.resData = resData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getResCode() {
|
||||
return this.resCode;
|
||||
}
|
||||
|
||||
public void setResCode(String resCode) {
|
||||
this.resCode = resCode;
|
||||
}
|
||||
|
||||
public String getResMess() {
|
||||
return this.resMess;
|
||||
}
|
||||
|
||||
public void setResMess(String resMess) {
|
||||
this.resMess = resMess;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtGt3SmbsLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String tranId;
|
||||
private String reqTime;
|
||||
private String reqData;
|
||||
private String clbz;
|
||||
private String resTime;
|
||||
private String resData;
|
||||
private String resCode;
|
||||
private String resMess;
|
||||
private String errMess;
|
||||
private String ywid;
|
||||
private String swjgDm;
|
||||
private String bsdtDjxh;
|
||||
private Long timeUsed;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getTranId() {
|
||||
return this.tranId;
|
||||
}
|
||||
|
||||
public void setTranId(String tranId) {
|
||||
this.tranId = tranId;
|
||||
}
|
||||
|
||||
public String getReqTime() {
|
||||
return this.reqTime;
|
||||
}
|
||||
|
||||
public void setReqTime(String reqTime) {
|
||||
this.reqTime = reqTime;
|
||||
}
|
||||
|
||||
public String getReqData() {
|
||||
return this.reqData;
|
||||
}
|
||||
|
||||
public void setReqData(String reqData) {
|
||||
this.reqData = reqData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getResTime() {
|
||||
return this.resTime;
|
||||
}
|
||||
|
||||
public void setResTime(String resTime) {
|
||||
this.resTime = resTime;
|
||||
}
|
||||
|
||||
public String getResData() {
|
||||
return this.resData;
|
||||
}
|
||||
|
||||
public void setResData(String resData) {
|
||||
this.resData = resData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getResCode() {
|
||||
return this.resCode;
|
||||
}
|
||||
|
||||
public void setResCode(String resCode) {
|
||||
this.resCode = resCode;
|
||||
}
|
||||
|
||||
public String getResMess() {
|
||||
return this.resMess;
|
||||
}
|
||||
|
||||
public void setResMess(String resMess) {
|
||||
this.resMess = resMess;
|
||||
}
|
||||
|
||||
public String getYwid() {
|
||||
return this.ywid;
|
||||
}
|
||||
|
||||
public void setYwid(String ywid) {
|
||||
this.ywid = ywid;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public Long getTimeUsed() {
|
||||
return this.timeUsed;
|
||||
}
|
||||
|
||||
public void setTimeUsed(Long timeUsed) {
|
||||
this.timeUsed = timeUsed;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtGt3SmbsRxbdLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String cgbz;
|
||||
private String rq;
|
||||
private String returncode;
|
||||
private String returnmessage;
|
||||
private String sfzhm;
|
||||
private String swjgDm;
|
||||
private String bsdtDjxh;
|
||||
private String jkyzuuid;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getCgbz() {
|
||||
return this.cgbz;
|
||||
}
|
||||
|
||||
public void setCgbz(String cgbz) {
|
||||
this.cgbz = cgbz;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
|
||||
public String getReturncode() {
|
||||
return this.returncode;
|
||||
}
|
||||
|
||||
public void setReturncode(String returncode) {
|
||||
this.returncode = returncode;
|
||||
}
|
||||
|
||||
public String getReturnmessage() {
|
||||
return this.returnmessage;
|
||||
}
|
||||
|
||||
public void setReturnmessage(String returnmessage) {
|
||||
this.returnmessage = returnmessage;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public String getJkyzuuid() {
|
||||
return this.jkyzuuid;
|
||||
}
|
||||
|
||||
public void setJkyzuuid(String jkyzuuid) {
|
||||
this.jkyzuuid = jkyzuuid;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtGt3SmbsSmcjLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String cgbz;
|
||||
private String rq;
|
||||
private String returncode;
|
||||
private String returnmessage;
|
||||
private String sfzhm;
|
||||
private String swjgDm;
|
||||
private String bsdtDjxh;
|
||||
private String qhhm;
|
||||
private String qhsj;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getCgbz() {
|
||||
return this.cgbz;
|
||||
}
|
||||
|
||||
public void setCgbz(String cgbz) {
|
||||
this.cgbz = cgbz;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
|
||||
public String getReturncode() {
|
||||
return this.returncode;
|
||||
}
|
||||
|
||||
public void setReturncode(String returncode) {
|
||||
this.returncode = returncode;
|
||||
}
|
||||
|
||||
public String getReturnmessage() {
|
||||
return this.returnmessage;
|
||||
}
|
||||
|
||||
public void setReturnmessage(String returnmessage) {
|
||||
this.returnmessage = returnmessage;
|
||||
}
|
||||
|
||||
public String getSfzhm() {
|
||||
return this.sfzhm;
|
||||
}
|
||||
|
||||
public void setSfzhm(String sfzhm) {
|
||||
this.sfzhm = sfzhm;
|
||||
}
|
||||
|
||||
public String getSwjgDm() {
|
||||
return this.swjgDm;
|
||||
}
|
||||
|
||||
public void setSwjgDm(String swjgDm) {
|
||||
this.swjgDm = swjgDm;
|
||||
}
|
||||
|
||||
public String getBsdtDjxh() {
|
||||
return this.bsdtDjxh;
|
||||
}
|
||||
|
||||
public void setBsdtDjxh(String bsdtDjxh) {
|
||||
this.bsdtDjxh = bsdtDjxh;
|
||||
}
|
||||
|
||||
public String getQhhm() {
|
||||
return this.qhhm;
|
||||
}
|
||||
|
||||
public void setQhhm(String qhhm) {
|
||||
this.qhhm = qhhm;
|
||||
}
|
||||
|
||||
public String getQhsj() {
|
||||
return this.qhsj;
|
||||
}
|
||||
|
||||
public void setQhsj(String qhsj) {
|
||||
this.qhsj = qhsj;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtTaxServiceLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String recvTime;
|
||||
private String recvData;
|
||||
private String clbz;
|
||||
private String backTime;
|
||||
private String backData;
|
||||
private String errMess;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getRecvTime() {
|
||||
return this.recvTime;
|
||||
}
|
||||
|
||||
public void setRecvTime(String recvTime) {
|
||||
this.recvTime = recvTime;
|
||||
}
|
||||
|
||||
public String getRecvData() {
|
||||
return this.recvData;
|
||||
}
|
||||
|
||||
public void setRecvData(String recvData) {
|
||||
this.recvData = recvData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getBackTime() {
|
||||
return this.backTime;
|
||||
}
|
||||
|
||||
public void setBackTime(String backTime) {
|
||||
this.backTime = backTime;
|
||||
}
|
||||
|
||||
public String getBackData() {
|
||||
return this.backData;
|
||||
}
|
||||
|
||||
public void setBackData(String backData) {
|
||||
this.backData = backData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtTmActionLog
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private String recvTime;
|
||||
private String recvData;
|
||||
private String clbz;
|
||||
private String jgbz;
|
||||
private String backTime;
|
||||
private String backData;
|
||||
private String errMess;
|
||||
private String execDbbz;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public String getRecvTime() {
|
||||
return this.recvTime;
|
||||
}
|
||||
|
||||
public void setRecvTime(String recvTime) {
|
||||
this.recvTime = recvTime;
|
||||
}
|
||||
|
||||
public String getRecvData() {
|
||||
return this.recvData;
|
||||
}
|
||||
|
||||
public void setRecvData(String recvData) {
|
||||
this.recvData = recvData;
|
||||
}
|
||||
|
||||
public String getClbz() {
|
||||
return this.clbz;
|
||||
}
|
||||
|
||||
public void setClbz(String clbz) {
|
||||
this.clbz = clbz;
|
||||
}
|
||||
|
||||
public String getJgbz() {
|
||||
return this.jgbz;
|
||||
}
|
||||
|
||||
public void setJgbz(String jgbz) {
|
||||
this.jgbz = jgbz;
|
||||
}
|
||||
|
||||
public String getBackTime() {
|
||||
return this.backTime;
|
||||
}
|
||||
|
||||
public void setBackTime(String backTime) {
|
||||
this.backTime = backTime;
|
||||
}
|
||||
|
||||
public String getBackData() {
|
||||
return this.backData;
|
||||
}
|
||||
|
||||
public void setBackData(String backData) {
|
||||
this.backData = backData;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public String getExecDbbz() {
|
||||
return this.execDbbz;
|
||||
}
|
||||
|
||||
public void setExecDbbz(String execDbbz) {
|
||||
this.execDbbz = execDbbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtTmAppExecption
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String logXh;
|
||||
private Long userid;
|
||||
private String rq;
|
||||
private String sm;
|
||||
private String errMess;
|
||||
|
||||
public String getLogXh() {
|
||||
return this.logXh;
|
||||
}
|
||||
|
||||
public void setLogXh(String logXh) {
|
||||
this.logXh = logXh;
|
||||
}
|
||||
|
||||
public Long getUserid() {
|
||||
return this.userid;
|
||||
}
|
||||
|
||||
public void setUserid(Long userid) {
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public String getRq() {
|
||||
return this.rq;
|
||||
}
|
||||
|
||||
public void setRq(String rq) {
|
||||
this.rq = rq;
|
||||
}
|
||||
|
||||
public String getErrMess() {
|
||||
return this.errMess;
|
||||
}
|
||||
|
||||
public String getSm() {
|
||||
return this.sm;
|
||||
}
|
||||
|
||||
public void setErrMess(String errMess) {
|
||||
this.errMess = errMess;
|
||||
}
|
||||
|
||||
public void setSm(String sm) {
|
||||
this.sm = sm;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtTmErrcode
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String code;
|
||||
private String mess;
|
||||
private String jjbf;
|
||||
private String bz;
|
||||
private String yxbz;
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMess() {
|
||||
return this.mess;
|
||||
}
|
||||
|
||||
public void setMess(String mess) {
|
||||
this.mess = mess;
|
||||
}
|
||||
|
||||
public String getJjbf() {
|
||||
return this.jjbf;
|
||||
}
|
||||
|
||||
public void setJjbf(String jjbf) {
|
||||
this.jjbf = jjbf;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return this.bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.bo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class XtTmSql
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String sqlBm;
|
||||
private String ywsm;
|
||||
private String sqlSelect;
|
||||
private String sqlWhere;
|
||||
private String yxbz;
|
||||
|
||||
public String getSqlBm() {
|
||||
return this.sqlBm;
|
||||
}
|
||||
|
||||
public void setSqlBm(String sqlBm) {
|
||||
this.sqlBm = sqlBm;
|
||||
}
|
||||
|
||||
public String getYwsm() {
|
||||
return this.ywsm;
|
||||
}
|
||||
|
||||
public void setYwsm(String ywsm) {
|
||||
this.ywsm = ywsm;
|
||||
}
|
||||
|
||||
public String getSqlSelect() {
|
||||
return this.sqlSelect;
|
||||
}
|
||||
|
||||
public void setSqlSelect(String sqlSelect) {
|
||||
this.sqlSelect = sqlSelect;
|
||||
}
|
||||
|
||||
public String getSqlWhere() {
|
||||
return this.sqlWhere;
|
||||
}
|
||||
|
||||
public void setSqlWhere(String sqlWhere) {
|
||||
this.sqlWhere = sqlWhere;
|
||||
}
|
||||
|
||||
public String getYxbz() {
|
||||
return this.yxbz;
|
||||
}
|
||||
|
||||
public void setYxbz(String yxbz) {
|
||||
this.yxbz = yxbz;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.springframework.beans.factory.annotation.Autowired
|
||||
* org.springframework.stereotype.Repository
|
||||
*/
|
||||
package com.hst.common.dao.imp;
|
||||
|
||||
import com.hst.framework.common.HstSqlMapClientTemplate;
|
||||
import com.hst.framework.dao.BaseDao;
|
||||
import com.hst.taxService.domain.DhXmlSaveDom;
|
||||
import java.util.List;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public class SaveDhXmlDaoImp
|
||||
implements BaseDao {
|
||||
@Autowired
|
||||
private HstSqlMapClientTemplate sqlMapClientTemplate;
|
||||
|
||||
public void saveDhXml(List<DhXmlSaveDom> list) throws Exception {
|
||||
this.sqlMapClientTemplate.update("deleteNsfwSwjgWhSxt");
|
||||
for (DhXmlSaveDom dom : list) {
|
||||
this.sqlMapClientTemplate.insert("insertNsfwSwjgWhSxt", dom);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package com.hst.common.domain;
|
||||
|
||||
import com.hst.framework.domain.BaseDomain;
|
||||
|
||||
public class BaseAppServiceDomain
|
||||
extends BaseDomain {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String uid;
|
||||
private String bid;
|
||||
private String sid;
|
||||
private String ver;
|
||||
private String kz;
|
||||
|
||||
public String getKz() {
|
||||
return this.kz;
|
||||
}
|
||||
|
||||
public String getVer() {
|
||||
return this.ver;
|
||||
}
|
||||
|
||||
public void setKz(String kz) {
|
||||
this.kz = kz;
|
||||
}
|
||||
|
||||
public void setVer(String ver) {
|
||||
this.ver = ver;
|
||||
}
|
||||
|
||||
public String getUid() {
|
||||
return this.uid;
|
||||
}
|
||||
|
||||
public void setUid(String uid) {
|
||||
this.uid = uid;
|
||||
}
|
||||
|
||||
public String getBid() {
|
||||
return this.bid;
|
||||
}
|
||||
|
||||
public String getSid() {
|
||||
return this.sid;
|
||||
}
|
||||
|
||||
public void setBid(String bid) {
|
||||
this.bid = bid;
|
||||
}
|
||||
|
||||
public void setSid(String sid) {
|
||||
this.sid = sid;
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue