add method

Dayfl add(
  1. DateLocationEnum type,
  2. int num
)

添加日期

type 操作对象

num 操作数值

Implementation

Dayfl add(DateLocationEnum type, int num) {
  _datetime = _set(type, num, 1);
  _init();
  return this;
}