Subversion Repositories SmartDukaan

Rev

Rev 32300 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32246 tejbeer 1
package com.spice.profitmandi.dao.entity.warehouse;
2
 
3
public enum DebitNoteType {
4
 
32311 tejbeer 5
    priceMismatch("Price Mismatch"), qtyMismatch("Qty Mismatch"), stockReturn("");
32246 tejbeer 6
 
32300 tejbeer 7
    private final String value;
8
 
9
    private DebitNoteType(String value) {
10
        this.value = value;
11
    }
12
 
13
    public String getValue() {
14
        return value;
15
    }
16
 
32246 tejbeer 17
}