Skip to content

Commit

Permalink
优化数据统计“本周”的健康提示
Browse files Browse the repository at this point in the history
  • Loading branch information
noberumotto committed Nov 18, 2021
1 parent 59ca7b4 commit 3b34aa8
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/Local/ProjectEye/Models/StatisticModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -453,5 +453,48 @@ public ImageSource SkipImageSource
}

#endregion


#region 本周状态等级
private int WeekWorkLevel_;
public int WeekWorkLevel
{
get
{
return WeekWorkLevel_;
}
set
{
WeekWorkLevel_ = value;
OnPropertyChanged("WeekWorkLevel");
}
}
private int WeekRestLevel_;
public int WeekRestLevel
{
get
{
return WeekRestLevel_;
}
set
{
WeekRestLevel_ = value;
OnPropertyChanged("WeekRestLevel");
}
}
private int WeekSkipLevel_;
public int WeekSkipLevel
{
get
{
return WeekSkipLevel_;
}
set
{
WeekSkipLevel_ = value;
OnPropertyChanged("WeekSkipLevel");
}
}
#endregion
}
}

0 comments on commit 3b34aa8

Please sign in to comment.