mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
8 lines
339 B
TypeScript
8 lines
339 B
TypeScript
import { Table_Issue_Type ,ICommon_Model_Issue_Type} from '../../../../common/model/issue_type';
|
|
import { getMysqlInstance } from "../mysql";
|
|
|
|
export async function getIssueTypeListMapper() {
|
|
var mysql=getMysqlInstance()
|
|
var ret=await mysql.execute<ICommon_Model_Issue_Type[]>(`select * from ${Table_Issue_Type}`)
|
|
return ret
|
|
} |