2024-02-29 10:32:37 +08:00
|
|
|
|
import { ApiProperty } from '@nestjs/swagger';
|
2024-03-11 13:41:41 +08:00
|
|
|
|
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';
|
2024-03-11 13:41:41 +08:00
|
|
|
|
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 {
|
2024-03-11 13:41:41 +08:00
|
|
|
|
@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',
|
2024-03-11 13:41:41 +08:00
|
|
|
|
precision: 15,
|
2024-02-29 10:32:37 +08:00
|
|
|
|
default: 0,
|
2024-03-11 13:41:41 +08:00
|
|
|
|
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;
|
2024-03-11 13:41:41 +08:00
|
|
|
|
|
|
|
|
|
@ManyToOne(() => ProjectEntity)
|
|
|
|
|
@JoinColumn({ name: 'project_id' })
|
|
|
|
|
project: ProjectEntity;
|
|
|
|
|
|
|
|
|
|
@ManyToOne(() => ProductEntity)
|
|
|
|
|
@JoinColumn({ name: 'product_id' })
|
|
|
|
|
product: ProductEntity;
|
2024-02-29 10:32:37 +08:00
|
|
|
|
}
|