OutTTaskLog.java 611 B

1234567891011121314151617181920212223242526272829
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.model.TTaskLog;
  3. public class OutTTaskLog extends TTaskLog {
  4. private String taskAllocatorName;
  5. private String taskReceiverName;
  6. public String getTaskAllocatorName() {
  7. return taskAllocatorName;
  8. }
  9. public void setTaskAllocatorName(String taskAllocatorName) {
  10. this.taskAllocatorName = taskAllocatorName;
  11. }
  12. public String getTaskReceiverName() {
  13. return taskReceiverName;
  14. }
  15. public void setTaskReceiverName(String taskReceiverName) {
  16. this.taskReceiverName = taskReceiverName;
  17. }
  18. }