mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
19 lines
373 B
TypeScript
19 lines
373 B
TypeScript
import { BaseModel } from "./base"
|
|
|
|
export interface ICommon_Model_Team {
|
|
id :string ,
|
|
name :string,
|
|
photo:string,
|
|
created_time :Date,
|
|
modified_time :Date,
|
|
created_by :string ,
|
|
organization_id:string
|
|
}
|
|
export const Table_Team="team"
|
|
|
|
class TeamModel extends BaseModel {
|
|
table=Table_Team
|
|
model=<ICommon_Model_Team>{}
|
|
}
|
|
|
|
export let teamModel=new TeamModel |