| @@ -0,0 +1,26 @@ | |||||
| package com.iformall.domain.dto; | |||||
| import cn.afterturn.easypoi.excel.annotation.Excel; | |||||
| import com.iformall.common.LogColumn; | |||||
| import com.iformall.domain.po.invest.InvestTaskEntity; | |||||
| import lombok.Data; | |||||
| import lombok.EqualsAndHashCode; | |||||
| @Data | |||||
| @EqualsAndHashCode(callSuper = true) | |||||
| public class InvestTaskDto extends InvestTaskEntity { | |||||
| @Excel(name="商铺号/多径点位号",width = 20,orderNum = "2") | |||||
| @io.swagger.annotations.ApiModelProperty(value="商铺编号",name="shopNumber") | |||||
| private String shopNumber; | |||||
| @Excel(name="租赁状态",width = 20,orderNum = "7",replace = {"未出租_0","已出租_1"}) | |||||
| @io.swagger.annotations.ApiModelProperty(value="状态(0:未出租, 1:已出租)",name="status") | |||||
| private Integer shopStatus; | |||||
| /** | |||||
| * 经营业态 | |||||
| */ | |||||
| @LogColumn | |||||
| @io.swagger.annotations.ApiModelProperty(value = "经营业态", name = "businessId") | |||||
| private Integer businessId; | |||||
| } | |||||