mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
18 lines
453 B
TypeScript
18 lines
453 B
TypeScript
import { BaseModel } from "./base"
|
|
|
|
export interface ICommon_Model_Workflow_Solution {
|
|
id :string ,
|
|
created_time :Date,
|
|
modified_time :Date,
|
|
reserved :number,
|
|
name :string,
|
|
description :string
|
|
}
|
|
export const Table_Workflow_Solution="workflow_solution"
|
|
|
|
class WorkflowSolutionModel extends BaseModel {
|
|
table=Table_Workflow_Solution
|
|
model=<ICommon_Model_Workflow_Solution>{}
|
|
}
|
|
|
|
export let workflowSolutionModel=new WorkflowSolutionModel |