mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
import {BaseModel} from "./base"
|
|
|
|
export interface ICommon_Model_Plan {
|
|
id :string ,
|
|
name:string,
|
|
start_time:Date,
|
|
organization_user_id:string,
|
|
project_id:string,
|
|
organization_id:string
|
|
}
|
|
export const Table_Plan="plan"
|
|
|
|
class PlanModel extends BaseModel {
|
|
table=Table_Plan
|
|
model=<ICommon_Model_Plan>{}
|
|
}
|
|
|
|
export let planModel=new PlanModel |