import { BaseEntity, Column, Entity, PrimaryGeneratedColumn } from 'typeorm';

@Entity('shop_item_category')
export class ShopItemCategory extends BaseEntity {
  @PrimaryGeneratedColumn({
    comment: 'the unique identifier',
  })
  idShop_Item_Category: number;

  @Column({
    type: 'varchar',
    length: 45,
    nullable: false,
  })
  Description: string;

  @Column({
    type: 'int',
    nullable: false,
  })
  Merchant_idMerchant: number;
}
