oa_based/src/modules/company/company.entity.ts

40 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-03-04 16:34:54 +08:00
import { ApiHideProperty, ApiProperty } from '@nestjs/swagger';
2024-03-05 13:57:03 +08:00
import { Column, Entity, JoinTable, ManyToMany, OneToMany, Relation } from 'typeorm';
2024-03-04 16:34:54 +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 { ProductEntity } from '../product/product.entity';
2024-04-16 14:06:02 +08:00
import { SkDomain } from '~/common/decorators/domain.decorator';
2024-03-04 16:34:54 +08:00
@Entity({ name: 'company' })
export class CompanyEntity extends CommonEntity {
@Column({
name: 'name',
type: 'varchar',
unique: true,
length: 255,
comment: '公司名称'
})
@ApiProperty({ description: '公司名称' })
name: string;
@Column({ name: 'is_delete', type: 'tinyint', default: 0, comment: '是否删除' })
@ApiProperty({ description: '删除状态0未删除1已删除' })
isDelete: number;
2024-04-16 14:06:02 +08:00
@Column({ type: 'int', default: 1, comment: '所属域' })
@ApiProperty({ description: '所属域' })
domain: SkDomain;
2024-03-05 13:57:03 +08:00
@ApiHideProperty()
@OneToMany(() => ProductEntity, product => product.company)
products: Relation<ProductEntity[]>;
2024-03-04 16:34:54 +08:00
@ManyToMany(() => Storage, storage => storage.companys)
@JoinTable({
name: 'company_storage',
joinColumn: { name: 'company_id', referencedColumnName: 'id' },
inverseJoinColumn: { name: 'file_id', referencedColumnName: 'id' }
})
files: Relation<Storage[]>;
}