Teamlinker/code/common/model/file.ts
sx1989827 cd17ff8676 fix
2021-09-14 20:37:50 +08:00

11 lines
233 B
TypeScript

export interface ICommon_Model_File {
id :string,
user_id :string,
project_id :string ,
size: string ,
filename :string,
type :string,
created_time :Date,
path :string,
}
export const Table_File="file"