mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
export interface ICommon_Model_User {
|
|
id :bigint,
|
|
username :string,
|
|
email :string,
|
|
phone :string,
|
|
created_time :Date,
|
|
modified_time :Date,
|
|
password :string,
|
|
sign :string,
|
|
location :string,
|
|
title :string,
|
|
}
|
|
export const Table_User="user" |