Compare commits

..

2 Commits

Author SHA1 Message Date
joylink_fanyuhong 2e19a66a6b Merge branch 'develop' of https://gitea.joylink.club/joylink/xian-ncc-da-client into develop 2024-11-19 14:05:54 +08:00
joylink_fanyuhong fac62de1ae 等待时间调整 2024-11-19 14:05:48 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -208,10 +208,10 @@ export class PlatformState extends GraphicStateBase implements IPlatformState {
this.states.rtuId = value; this.states.rtuId = value;
} }
get bizWaitTimeSec(): number { get bizWaitTimeSec(): number {
return this.states.bizWaitStartTimeSec; return this.states.bizWaitTimeSec;
} }
set bizWaitTimeSec(value: number) { set bizWaitTimeSec(value: number) {
this.states.bizWaitStartTimeSec = value; this.states.bizWaitTimeSec = value;
} }
get states(): state.Platform { get states(): state.Platform {
return this.getState<state.Platform>(); return this.getState<state.Platform>();