mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
export interface ICommon_Model_User_Setting {
|
|
id :bigint ,
|
|
key :string,
|
|
value :string,
|
|
type :number,
|
|
created_time :Date,
|
|
modified_time :Date,
|
|
user_id :bigint,
|
|
}
|
|
export const Table_User_Setting="user_setting" |