You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
784 B
36 lines
784 B
import type { R } from '/#/axios'; |
|
import type { Page } from '/@/api/common/data/entity'; |
|
|
|
export type PushConcernFanParams = Page & PushConcernFan; |
|
|
|
export interface PushConcernFan { |
|
id: string; |
|
deptName: string; |
|
createByName: string; |
|
updateByName: string; |
|
nickName: string; |
|
concernUserId: string; |
|
sex: string; |
|
deptId: string; |
|
fanUserId: string; |
|
updateTime: string; |
|
avatar: string; |
|
userName: string; |
|
updateById: string; |
|
loginTime?: string; |
|
phone: string; |
|
createTime: string; |
|
loginIp: string; |
|
createById: string; |
|
userType: string; |
|
email: string; |
|
remarks: string; |
|
cfStatus: number; |
|
cfCreateTime: string; |
|
cfType: string; |
|
cfRemarks: string; |
|
blId: string; |
|
[key:string]: any; |
|
} |
|
|
|
export type PushConcernFanResult = R<PushConcernFan[]>;
|
|
|