mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
18 lines
434 B
TypeScript
18 lines
434 B
TypeScript
import { BaseModel } from "./base"
|
|
|
|
export interface ICommon_Model_Field_Solution {
|
|
id :string,
|
|
created_time :Date,
|
|
modified_time :Date ,
|
|
name :string,
|
|
description :string,
|
|
organization_id:string
|
|
}
|
|
export const Table_Field_Solution="field_solution"
|
|
|
|
class FieldSolutionModel extends BaseModel {
|
|
table=Table_Field_Solution
|
|
model=<ICommon_Model_Field_Solution>{}
|
|
}
|
|
|
|
export let fieldSolutionModel=new FieldSolutionModel |