2023-04-12 15:53:32 +08:00
|
|
|
import { observable } from "mobx";
|
2023-03-02 14:07:36 +08:00
|
|
|
import { WeaForm } from "comsMobx";
|
2022-03-14 17:07:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export class AttendanceStore {
|
2023-03-01 15:23:56 +08:00
|
|
|
@observable form = new WeaForm();
|
2023-03-07 14:47:47 +08:00
|
|
|
@observable refenceform = new WeaForm();
|
2023-04-11 13:41:56 +08:00
|
|
|
//薪酬统计 新增form
|
|
|
|
|
@observable statisticsForm = new WeaForm();
|
2023-04-17 17:32:16 +08:00
|
|
|
@observable reportForm = new WeaForm();
|
2023-04-23 11:28:18 +08:00
|
|
|
//报表查看 统计数据范围及规则设置form
|
|
|
|
|
@observable settingForm = new WeaForm();
|
2022-06-02 17:11:28 +08:00
|
|
|
}
|