83 lines
1.1 KiB
TypeScript
83 lines
1.1 KiB
TypeScript
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
|
|
|
/**
|
|
* @description: LngBPngLine分页参数 模型
|
|
*/
|
|
export interface LngBPngLinePageParams extends BasicPageParams {
|
|
fullName: string;
|
|
|
|
valid: string;
|
|
|
|
code: string;
|
|
|
|
ownSign: string;
|
|
|
|
staCodeLng: string;
|
|
|
|
sort: string;
|
|
|
|
note: string;
|
|
}
|
|
|
|
/**
|
|
* @description: LngBPngLine分页返回值模型
|
|
*/
|
|
export interface LngBPngLinePageModel {
|
|
id: string;
|
|
|
|
code: string;
|
|
|
|
fullName: string;
|
|
|
|
ownSign: string;
|
|
|
|
staCodeLng: string;
|
|
|
|
valid: string;
|
|
|
|
note: string;
|
|
|
|
sort: string;
|
|
}
|
|
|
|
/**
|
|
* @description: LngBPngLine表类型
|
|
*/
|
|
export interface LngBPngLineModel {
|
|
id: number;
|
|
|
|
code: string;
|
|
|
|
fullName: string;
|
|
|
|
ownSign: string;
|
|
|
|
staCodeLng: string;
|
|
|
|
sort: number;
|
|
|
|
valid: string;
|
|
|
|
note: string;
|
|
|
|
createUserId: number;
|
|
|
|
createDate: string;
|
|
|
|
modifyUserId: number;
|
|
|
|
modifyDate: string;
|
|
|
|
deleteMark: number;
|
|
|
|
tenantId: number;
|
|
|
|
deptId: number;
|
|
|
|
ruleUserId: number;
|
|
}
|
|
|
|
/**
|
|
* @description: LngBPngLine分页返回值结构
|
|
*/
|
|
export type LngBPngLinePageResult = BasicFetchResult<LngBPngLinePageModel>; |