1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
|
| @Entity("Plat_UserProduct")
| export class PlatUserProduct {
| @PrimaryGeneratedColumn()
| userProduct_Id: number;
|
| @Column()
| userProductCode: string;
|
| @Column()
| userproductType: string;
|
| @Column()
| userOrder_Id: number;
|
| /** 用户编号 */
| @Column()
| platUser_Id: number;
|
| @Column()
| platUserCode: string;
|
| /** 平台账号 */
| @Column()
| platUserName: string;
|
| @Column()
| product_Id: number;
|
| /** 产品编号 */
| @Column()
| productCode: string;
|
| /** 产品名称 */
| @Column()
| productName: string;
|
| @Column()
| version_Id: number;
|
| /** appKey */
| @Column()
| appKey: string;
|
| /** appKey */
| @Column()
| appSecret: string;
| }
|
|