OutPaymentLog.java 593 B

1234567891011121314151617181920212223242526272829303132
  1. package com.goafanti.organization.bo;
  2. import com.goafanti.common.model.PaymentLog;
  3. public class OutPaymentLog extends PaymentLog{
  4. public OutPaymentLog(Integer pid, Integer status, String remarks, String aid, String aname) {
  5. super(pid, status, remarks, aid, aname);
  6. }
  7. public OutPaymentLog() {
  8. }
  9. /**
  10. *
  11. */
  12. private static final long serialVersionUID = 1L;
  13. private String createTimes;
  14. public String getCreateTimes() {
  15. return createTimes;
  16. }
  17. public void setCreateTimes(String createTimes) {
  18. this.createTimes = createTimes;
  19. }
  20. }