export interface MonitoringPointResult { id?: string; monPointName: string; monitorType: string; code?: any; } export interface Transparency { monpointTypeId: string; pageNo: number; pageSize: number; } export interface TransparencyRes { data: TransparencyResData[]; pageSize: number; totalCount: number; totalPage: number; } export interface TransparencyResData { id: string; monpointTypeId: string; projectId: string; time: string; transparencyNum: number; } export interface TransparencySaveRes { code: boolean; message: string; } export interface TransparencySave { id?: string; monpointTypeId: string; time: string; transparencyNum: number; } export interface TransparencyDel { id: string; monpointTypeId: string; } export interface MudSearchResult { content: MudSearchResultContent[]; totalElements: number; totalPages: number; last: boolean; number: number; size: number; sort?: any; first?: boolean; numberOfElements?: number; } export interface MudSearchResultContent { id: string; projectId: string; monitorPointId: string; monitorPointName: string; hierarcyId: string; hierarcyName: string; recordTheTime: string; totalNitrogen: number; totalPhosphorus: number; gradedPhosphorus: number; moistureContent: number; createDate: number; updateDate: any; } export interface MonHierarchyResult { hierarchyName: string; id?: string; monPoinId: string; monitorType: string; } export interface MudParams { id?: string; projectId: string; monitorPointId: string; monitorPointName: string; hierarcyId: string; hierarcyName: string; recordTheTime: string; totalNitrogen: number; totalPhosphorus: number; gradedPhosphorus: number; moistureContent: number; } export interface MonitorParamsAll { createDate?: string; gradedPhosphorus?: number; hierarcyId?: string; hierarcyName?: string; id?: string; lossOnIgnition?: number; moistureContent?: number; monitorPointId?: string; monitorPointName?: string; pageNo?: number; pageSize?: number; projectId?: string; recordTheTime?: string; totalNitrogen?: number; totalPhosphorus?: number; updateDate?: string; } export interface AnimalParams { animalNum: number; animalPlantNum: number; date: string; id?: string; monPointId: string; plantNum: number; } export interface MointorParams { monPointId?: string; pageIndex?: number; pageSize?: number; projectId?: string; recordId?: string; }