This commit is contained in:
zhutao
2025-09-08 15:30:09 +08:00
parent 193d29b0ce
commit 4623094bad
15 changed files with 374 additions and 246 deletions

View File

@@ -1,9 +1,9 @@
class PlanStepDto {
num? id;
int? id;
String? stepIcon;
String? stepContent;
String? stepExplain;
num? stepStatus;
int? stepStatus;
PlanStepDto({this.id, this.stepIcon, this.stepContent, this.stepExplain, this.stepStatus});