|
@@ -38,32 +38,32 @@ export class Question {
|
|
__v?: number;
|
|
__v?: number;
|
|
|
|
|
|
@Column({ comment: '用户id', nullable: true })
|
|
@Column({ comment: '用户id', nullable: true })
|
|
- user_id: string;
|
|
|
|
- @Column({ comment: '问题类型: 1-投诉反馈; 2-意见建议; 3-咨询反馈' })
|
|
|
|
|
|
+ user_id: number;
|
|
|
|
+ @Column({ comment: '问题类型: 1-投诉反馈; 2-意见建议; 3-咨询反馈', nullable: true })
|
|
type: string;
|
|
type: string;
|
|
- @Column({ comment: '姓名' })
|
|
|
|
|
|
+ @Column({ comment: '姓名', nullable: true })
|
|
name: string;
|
|
name: string;
|
|
- @Column({ comment: '电话' })
|
|
|
|
|
|
+ @Column({ comment: '电话', nullable: true })
|
|
phone: string;
|
|
phone: string;
|
|
- @Column({ comment: '邮箱' })
|
|
|
|
|
|
+ @Column({ comment: '邮箱' , nullable: true})
|
|
email: string;
|
|
email: string;
|
|
- @Column({ comment: '街/路' })
|
|
|
|
|
|
+ @Column({ comment: '街/路', nullable: true })
|
|
street: string;
|
|
street: string;
|
|
- @Column({ comment: '小区' })
|
|
|
|
|
|
+ @Column({ comment: '小区' , nullable: true})
|
|
community: string;
|
|
community: string;
|
|
- @Column({ comment: '楼栋' })
|
|
|
|
|
|
+ @Column({ comment: '楼栋' , nullable: true})
|
|
building: string;
|
|
building: string;
|
|
- @Column({ comment: '单元' })
|
|
|
|
|
|
+ @Column({ comment: '单元' , nullable: true})
|
|
unit: string;
|
|
unit: string;
|
|
- @Column({ comment: '室' })
|
|
|
|
|
|
+ @Column({ comment: '室' , nullable: true})
|
|
room: string;
|
|
room: string;
|
|
- @Column({ comment: '地址' })
|
|
|
|
|
|
+ @Column({ comment: '地址' , nullable: true})
|
|
address: string;
|
|
address: string;
|
|
- @Column({ comment: '反馈详情' })
|
|
|
|
|
|
+ @Column({ comment: '反馈详情' , nullable: true})
|
|
description: string;
|
|
description: string;
|
|
- @Column({ comment: '处理反馈' })
|
|
|
|
|
|
+ @Column({ comment: '处理反馈' , nullable: true})
|
|
deal_desc: string;
|
|
deal_desc: string;
|
|
- @Column({ comment: '处理状态: 0-未处理;1-已处理', default: '0' })
|
|
|
|
|
|
+ @Column({ comment: '处理状态: 0-未处理;1-已处理', default: '0' , nullable: true})
|
|
deal_status: string;
|
|
deal_status: string;
|
|
@Column({
|
|
@Column({
|
|
type: 'timestamp',
|
|
type: 'timestamp',
|