|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.enums.IdType; | 
|---|
|  |  |  | import com.core.common.Cools; | 
|---|
|  |  |  | import com.core.common.SpringUtils; | 
|---|
|  |  |  | import com.zy.asrs.service.DocTypeService; | 
|---|
|  |  |  | import com.zy.asrs.service.OrderSettleService; | 
|---|
|  |  |  | import com.zy.system.entity.User; | 
|---|
|  |  |  | import com.zy.system.service.UserService; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | 
|---|
|  |  |  | //            null    // 备注 | 
|---|
|  |  |  | //    ); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getDocType$(){ | 
|---|
|  |  |  | DocTypeService service = SpringUtils.getBean(DocTypeService.class); | 
|---|
|  |  |  | DocType docType = service.selectById(this.docType); | 
|---|
|  |  |  | if (!Cools.isEmpty(docType)){ | 
|---|
|  |  |  | return String.valueOf(docType.getDocName()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return null; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getPayType$(){ | 
|---|
|  |  |  | if (null == this.payType){ return null; } | 
|---|
|  |  |  | 
|---|
|  |  |  | return ""; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.sendTime); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getSettle$(){ | 
|---|
|  |  |  | OrderSettleService service = SpringUtils.getBean(OrderSettleService.class); | 
|---|
|  |  |  | OrderSettle orderSettle = service.selectById(this.settle); | 
|---|
|  |  |  | if (!Cools.isEmpty(orderSettle)){ | 
|---|
|  |  |  | return String.valueOf(orderSettle.getSettleName()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return null; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getStatus$(){ | 
|---|