Teamlinker/code/common/model/workflow_solution.ts
sx1989827 1d9d60d5b8 aa
2022-01-20 00:15:17 +08:00

19 lines
486 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,
issue_type_solution_id: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