| 1234567891011121314151617181920212223242526272829303132 |
- package com.goafanti.organization.bo;
- import com.goafanti.common.model.PaymentLog;
- public class OutPaymentLog extends PaymentLog{
- public OutPaymentLog(Integer pid, Integer status, String remarks, String aid, String aname) {
- super(pid, status, remarks, aid, aname);
- }
- public OutPaymentLog() {
-
- }
- /**
- *
- */
- private static final long serialVersionUID = 1L;
-
- private String createTimes;
- public String getCreateTimes() {
- return createTimes;
- }
- public void setCreateTimes(String createTimes) {
- this.createTimes = createTimes;
- }
- }
|