You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
466 B
TypeScript
13 lines
466 B
TypeScript
import { Request } from 'src/app/hmg-common/services/models/request';
|
|
|
|
export class WorkListRequest extends Request{
|
|
public static SHARED_DATA = 'login-request';
|
|
public P_NOTIFICATION_TYPE: string;
|
|
public P_SEARCH_FROM_USER: string;
|
|
public P_SEARCH_SUBJECT: string;
|
|
public P_SEARCH_SENT_DATE: string;
|
|
public P_SEARCH_ITEM_TYPE_DSP_NAME: string;
|
|
public P_PAGE_NUM: number;
|
|
public P_PAGE_LIMIT: number;
|
|
public P_ITEM_TYPE : string;
|
|
} |