| 123456789101112131415161718 |
- import {createPageContext, createSearchContext, createTableSearchContext} from '@hooks';
- import {GetFinishProductOutListStreamParams, OriginalListParams} from '@models';
- export const pageContext = createPageContext();
- export const searchContext = createSearchContext();
- export const contextState: OriginalListParams<GetFinishProductOutListStreamParams> = {
- wllbCode: '',
- startTime: '',
- endTime: '',
- storageCode: '',
- companyCode: '',
- customerCode: '',
- userName: '',
- wbs: '',
- deliveryId: '',
- materialName: '',
- };
- export const context = createTableSearchContext(contextState);
|