2024-03-04 17:31:28 +08:00
|
|
|
|
import { ApiHideProperty, ApiProperty } from '@nestjs/swagger';
|
2024-03-05 13:57:03 +08:00
|
|
|
|
import { Column, Entity, JoinColumn, JoinTable, ManyToMany, ManyToOne, Relation } from 'typeorm';
|
2024-03-04 17:31:28 +08:00
|
|
|
|
import { CommonEntity } from '~/common/entity/common.entity';
|
|
|
|
|
import { Storage } from '../tools/storage/storage.entity';
|
2024-03-05 13:57:03 +08:00
|
|
|
|
import { CompanyEntity } from '../company/company.entity';
|
2024-03-04 17:31:28 +08:00
|
|
|
|
|
|
|
|
|
@Entity({ name: 'product' })
|
|
|
|
|
export class ProductEntity extends CommonEntity {
|
|
|
|
|
@Column({
|
|
|
|
|
name: 'name',
|
|
|
|
|
type: 'varchar',
|
|
|
|
|
length: 255,
|
|
|
|
|
comment: '产品名称'
|
|
|
|
|
})
|
|
|
|
|
@ApiProperty({ description: '产品名称' })
|
|
|
|
|
name: string;
|
|
|
|
|
|
|
|
|
|
@Column({ name: 'is_delete', type: 'tinyint', default: 0, comment: '是否删除' })
|
|
|
|
|
@ApiProperty({ description: '删除状态:0未删除,1已删除' })
|
|
|
|
|
isDelete: number;
|
|
|
|
|
|
2024-03-05 13:57:03 +08:00
|
|
|
|
@Column({ name: 'company_id', type: 'int', comment: '所属公司', nullable: true })
|
|
|
|
|
@ApiProperty({ description: '所属公司' })
|
|
|
|
|
companyId: number;
|
|
|
|
|
|
|
|
|
|
@ManyToOne(() => CompanyEntity /* , { onDelete: 'CASCADE' } */)
|
|
|
|
|
@JoinColumn({ name: 'company_id' })
|
|
|
|
|
company: CompanyEntity;
|
|
|
|
|
|
2024-03-04 17:31:28 +08:00
|
|
|
|
@ManyToMany(() => Storage, storage => storage.products)
|
|
|
|
|
@JoinTable({
|
|
|
|
|
name: 'product_storage',
|
|
|
|
|
joinColumn: { name: 'product_id', referencedColumnName: 'id' },
|
|
|
|
|
inverseJoinColumn: { name: 'file_id', referencedColumnName: 'id' }
|
|
|
|
|
})
|
|
|
|
|
files: Relation<Storage[]>;
|
|
|
|
|
}
|