oa_based/src/modules/materials_inventory/materials_inventory.entity.ts

61 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-02-29 10:32:37 +08:00
import { ApiProperty } from '@nestjs/swagger';
import { Column, Entity, JoinColumn, JoinTable, ManyToMany, ManyToOne, Relation } from 'typeorm';
2024-02-29 10:32:37 +08:00
import { CommonEntity } from '~/common/entity/common.entity';
import { ProductEntity } from '../product/product.entity';
import { ProjectEntity } from '../project/project.entity';
2024-02-29 10:32:37 +08:00
2024-03-04 14:17:53 +08:00
@Entity({ name: 'materials_inventory' })
export class MaterialsInventoryEntity extends CommonEntity {
@Column({
name: 'project_id',
type: 'int',
comment: '项目'
})
@ApiProperty({ description: '项目' })
projectId: number;
2024-02-29 10:32:37 +08:00
@Column({
2024-03-08 17:23:33 +08:00
name: 'product_id',
2024-02-29 10:32:37 +08:00
type: 'int',
2024-03-08 17:23:33 +08:00
comment: '产品'
2024-02-29 10:32:37 +08:00
})
2024-03-08 17:23:33 +08:00
@ApiProperty({ description: '产品' })
productId: number;
2024-02-29 10:32:37 +08:00
@Column({
2024-03-08 17:23:33 +08:00
name: 'quantity',
2024-02-29 10:32:37 +08:00
type: 'int',
default: 0,
2024-03-08 17:23:33 +08:00
comment: '库存产品数量'
2024-02-29 10:32:37 +08:00
})
2024-03-08 17:23:33 +08:00
@ApiProperty({ description: '库存产品数量' })
quantity: number;
2024-02-29 10:32:37 +08:00
@Column({
2024-03-08 17:23:33 +08:00
name: 'unit_price',
2024-02-29 10:32:37 +08:00
type: 'decimal',
precision: 15,
2024-02-29 10:32:37 +08:00
default: 0,
scale: 10,
2024-03-08 17:23:33 +08:00
comment: '库存产品单价'
2024-02-29 10:32:37 +08:00
})
2024-03-08 17:23:33 +08:00
@ApiProperty({ description: '库存产品单价' })
unitPrice: number;
2024-02-29 10:32:37 +08:00
@Column({ name: 'remark', type: 'varchar', length: 255, comment: '备注', nullable: true })
@ApiProperty({ description: '备注' })
remark: string;
2024-03-04 14:17:53 +08:00
@Column({ name: 'is_delete', type: 'tinyint', default: 0, comment: '是否删除' })
@ApiProperty({ description: '删除状态0未删除1已删除' })
isDelete: number;
@ManyToOne(() => ProjectEntity)
@JoinColumn({ name: 'project_id' })
project: ProjectEntity;
@ManyToOne(() => ProductEntity)
@JoinColumn({ name: 'product_id' })
product: ProductEntity;
2024-02-29 10:32:37 +08:00
}