mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
23 lines
476 B
TypeScript
23 lines
476 B
TypeScript
import { BaseModel } from "./base"
|
|
|
|
export enum ECommon_Model_Comment_Type {
|
|
PROJECT
|
|
}
|
|
|
|
export interface ICommon_Model_Comment {
|
|
id:string,
|
|
type:ECommon_Model_Comment_Type,
|
|
type_id:string,
|
|
created_by:string,
|
|
content:string,
|
|
created_time:Date,
|
|
modified_time:Date
|
|
}
|
|
export const Table_Comment="comment"
|
|
|
|
class CommentModel extends BaseModel {
|
|
table=Table_Comment
|
|
model=<ICommon_Model_Comment>{}
|
|
}
|
|
|
|
export let commentModel=new CommentModel |