| | |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.zy.crm.manager.utils.TimeCalculatorUtils; |
| | | import com.zy.crm.system.entity.Dept; |
| | | import com.zy.crm.system.entity.Dic; |
| | |
| | | @ApiModelProperty(value= "出发日期") |
| | | @TableField("business_start_time") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date businessStartTime; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value= "结束日期") |
| | | @TableField("business_end_time") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date businessEndTime; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value= "hostId") |
| | | @TableField("host_id") |
| | | private Long hostId; |
| | | |
| | | /** |
| | | * 跟踪项目ID |
| | | */ |
| | | @ApiModelProperty(value= "跟踪项目ID") |
| | | @TableField("order_id") |
| | | private Long orderId; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | case 1: |
| | | return "等待批准"; |
| | | case 2: |
| | | return "审批通过"; |
| | | return "申请通过"; |
| | | default: |
| | | return String.valueOf(this.settle); |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | public String getBusinessDuration$(){ |
| | | if (null == this.businessDuration) return null; |
| | | return this.businessDuration+"\t天"; |
| | | } |
| | | |
| | | public String getBusinessTripDays$(){ |
| | | if (null == this.businessTripDays) return null; |
| | | return this.businessTripDays+"\t天"; |
| | | } |
| | | |
| | | public String getPcdStart() { |
| | | StringBuilder sb = new StringBuilder(); |