Teamlinker/code/common/model/organization_user.ts
2022-12-19 22:08:30 +08:00

25 lines
612 B
TypeScript

import {BaseModel} from "./base"
export interface ICommon_Model_Organization_User {
id: string,
organization_id: string,
user_id: string,
email: string,
phone: string,
created_time: Date,
modified_time: Date,
location: string,
title: string,
active: number,
job: string,
nickname: string,
remark: string
}
export const Table_Organization_User="organization_user"
class OrganizationUserModel extends BaseModel {
table = Table_Organization_User
model = <ICommon_Model_Organization_User>{}
}
export let organizationUserModel=new OrganizationUserModel