📅  最后修改于: 2022-03-11 14:58:12.239000             🧑  作者: Mango
_allowDay: boolean;
get allowDay(): boolean {
return this._allowDay;
}
@Input() set allowDay(value: boolean) {
this._allowDay = value;
this.updatePeriodTypes();
}