Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created October 24, 2017 12:11
Show Gist options
  • Save khannedy/2f55f4d960cabe4d5333a651f2cffc4d to your computer and use it in GitHub Desktop.
Save khannedy/2f55f4d960cabe4d5333a651f2cffc4d to your computer and use it in GitHub Desktop.
package com.idspring.crudreactive.entity;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
/**
* @author Eko Kurniawan Khannedy
* @since 24/10/17
*/
@Document(collection = "products")
public class Product {
@Id
private String id;
private String name;
private String categoryId;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment