D_D10014.java 482 B

12345678910111213141516171819202122232425
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 物理属性添加修改
  9. */
  10. public class D_D10014 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String type;//类型
  13. /**
  14. *类型
  15. */
  16. public void setType(String type) {
  17. this.type=type;
  18. }
  19. /**
  20. *类型
  21. */
  22. public String getType() {
  23. return this.type;
  24. }
  25. }