Rev 32311 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.warehouse;public enum DebitNoteType {priceMismatch("Price Mismatch"), qtyMismatch("Qty Mismatch"), stockReturn("Purchase Return");private final String value;private DebitNoteType(String value) {this.value = value;}public String getValue() {return value;}}