DepotItemVo4Material.java 482 B

123456789101112131415161718192021222324252627
  1. package com.jsh.erp.datasource.entities;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class DepotItemVo4Material extends DepotItem{
  5. private String mname;
  6. private String mmodel;
  7. public String getMname() {
  8. return mname;
  9. }
  10. public void setMname(String mname) {
  11. this.mname = mname;
  12. }
  13. public String getMmodel() {
  14. return mmodel;
  15. }
  16. public void setMmodel(String mmodel) {
  17. this.mmodel = mmodel;
  18. }
  19. }