jsdk-offical
Version:
JSDK is the most comprehensive TypeScript framework, like JDK.
24 lines (16 loc) • 530 B
text/typescript
/// <reference path="../../../../../dist/jsdk.d.ts" />
module AppDemo {
export namespace model {
export namespace output {
('AppDemo.model.output.User')
export class User extends Model {
public static DEFAULT_FIELDS = [
{ name: 'id', type: 'int', isId: true },
{ name: 'phone', persist: true },
{ name: 'email' }
]
}
}
}
}
import User = AppDemo.model.output.User;