ItfTblCollectionChargeBean.java 502 B

1234567891011121314151617
  1. package com.gree.mall.manager.bean;
  2. import com.gree.mall.manager.plus.entity.ItfTblCollectionCharge;
  3. import com.gree.mall.manager.plus.entity.ItfTblCollectionChargeDetail;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.Date;
  7. import java.util.List;
  8. @Data
  9. public class ItfTblCollectionChargeBean extends ItfTblCollectionCharge {
  10. @ApiModelProperty(value = "同步任务生成时间")
  11. private List<ItfTblCollectionChargeDetail> collectionChargeDetails;
  12. }