JXServiceModel.dart 294 B

12345678910111213141516171819202122
  1. /*
  2. 服务信息模型
  3. * */
  4. class JXServiceModel {
  5. String _id;
  6. String kind;
  7. /*提醒周期*/
  8. int cycle;
  9. String cycleUnit;
  10. /*提醒时间
  11. -n 提前n天提醒
  12. n 延后n天提醒
  13. 0 当天提醒,默认一般当天提醒
  14. * */
  15. int remindDay;
  16. /*备注*/
  17. String remark;
  18. }