Subversion Repositories SmartDukaan

Rev

Rev 32246 | Rev 32311 | Go to most recent revision | 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");

    private final String value;

    private DebitNoteType(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}