MemberLogBo.java 492 B

1234567891011121314151617181920212223242526
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.model.MemberLog;
  3. public class MemberLogBo extends MemberLog {
  4. private String aname;
  5. private String createTimes;
  6. public String getAname() {
  7. return aname;
  8. }
  9. public void setAname(String aname) {
  10. this.aname = aname;
  11. }
  12. public String getCreateTimes() {
  13. return createTimes;
  14. }
  15. public void setCreateTimes(String createTimes) {
  16. this.createTimes = createTimes;
  17. }
  18. }