Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProductAttributeView
Please create a React-JS view called "ProductAttributeView" for the fields of the ProductAttribute entity. The ProductAttributeView must contain the following fields: - name: Code type: STRING - name: CreatedAt type: DATE - name: DataType type: STRING - name: Name type: STRING - name: UpdatedAt type: DATE An existing ProductAttribute entity should be loaded from the relative URL: "/CategoryService/productattribute/{id}" (HTTP-GET) If a new ProductAttribute entity has been created, the new entity should be posted to the relative URL: "/CategoryService/productattribute" (HTTP-POST) If an existing ProductAttribute entity has been updated, the modified entity should be sent to the relative URL: "/CategoryService/productattribute/{id}" (HTTP-PUT) If an existing ProductAttribute entity has to be deleted, the following relative URL should be called: "/CategoryService/productattribute/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint