Teamlinker/code/common/model/workflow_solution.ts
sx1989827 982b20f1ca add
2022-01-23 23:53:31 +08:00

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