D_MDO0064.java 519 B

12345678910111213141516171819202122232425
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * MatchFuc参数添加修改
  9. */
  10. public class D_MDO0064 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String mfcid;//MatchFuc参数ID
  13. /**
  14. *MatchFuc参数ID
  15. */
  16. public void setMfcid(String mfcid) {
  17. this.mfcid=mfcid;
  18. }
  19. /**
  20. *MatchFuc参数ID
  21. */
  22. public String getMfcid() {
  23. return this.mfcid;
  24. }
  25. }