mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
25 lines
612 B
TypeScript
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 |