mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
export interface ICommon_Model_Workflow {
|
|
id :bigint ,
|
|
name :string,
|
|
description :string,
|
|
system :number,
|
|
created_time :Date,
|
|
modified_time :Date,
|
|
created_by :bigint ,
|
|
modified_by :bigint ,
|
|
}
|
|
export const Table_Workflow="workflow" |