- 浏览: 388 次
- 性别:
- 来自: 深圳
最新评论
文章列表
public enum BillWholesaleBillTypeEnums {
A("0","批发 "),
B("1","退货");
private String status;
private String text;
private BillWholesaleBillTypeEnums(String status, String text) {
this.status = status;
this.text = text;
}
public String getStatus() ...