2024-02-29 10:32:37 +08:00
|
|
|
|
import { ApiProperty } from '@nestjs/swagger';
|
2024-03-04 14:17:53 +08:00
|
|
|
|
import { Column, Entity, JoinTable, ManyToMany, Relation } from 'typeorm';
|
2024-02-29 10:32:37 +08:00
|
|
|
|
import { CommonEntity } from '~/common/entity/common.entity';
|
|
|
|
|
|
2024-03-04 14:17:53 +08:00
|
|
|
|
@Entity({ name: 'materials_inventory' })
|
|
|
|
|
export class MaterialsInventoryEntity extends CommonEntity {
|
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: 10,
|
|
|
|
|
default: 0,
|
|
|
|
|
scale: 2,
|
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-02-29 10:32:37 +08:00
|
|
|
|
}
|