101 lines
2.8 KiB
Java
101 lines
2.8 KiB
Java
package com.gxwebsoft.tower.param;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.gxwebsoft.common.core.annotation.QueryField;
|
|
import com.gxwebsoft.common.core.annotation.QueryType;
|
|
import com.gxwebsoft.common.core.web.BaseParam;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 标准节租金查询参数
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2024-02-05 15:04:19
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
@ApiModel(value = "TowerRentParam对象", description = "标准节租金查询参数")
|
|
public class TowerRentParam extends BaseParam {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value = "租单记录id")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer rentId;
|
|
|
|
@ApiModelProperty(value = "租金")
|
|
@QueryField(type = QueryType.EQ)
|
|
private BigDecimal rent;
|
|
|
|
@ApiModelProperty(value = "每个月租金")
|
|
@QueryField(type = QueryType.EQ)
|
|
private BigDecimal month;
|
|
|
|
@ApiModelProperty(value = "月数")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer num;
|
|
|
|
@ApiModelProperty(value = "获取的租金")
|
|
@QueryField(type = QueryType.EQ)
|
|
private BigDecimal totalRent;
|
|
|
|
@ApiModelProperty(value = "项目ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer projectId;
|
|
|
|
@ApiModelProperty(value = "合同编号")
|
|
private String contractNo;
|
|
|
|
@ApiModelProperty(value = "设备ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer equipmentId;
|
|
|
|
@ApiModelProperty(value = "起租日期")
|
|
private String startDate;
|
|
|
|
@ApiModelProperty(value = "停租日期")
|
|
private String stopDate;
|
|
|
|
@ApiModelProperty(value = "检测日期")
|
|
private String checkDate;
|
|
|
|
@ApiModelProperty(value = "报停日期")
|
|
private String reportStopDate;
|
|
|
|
@ApiModelProperty(value = "报停类型")
|
|
private String reportStopType;
|
|
|
|
@ApiModelProperty(value = "复工日期")
|
|
private String restoreDate;
|
|
|
|
@ApiModelProperty(value = "报监编号")
|
|
private String reportMonitorNo;
|
|
|
|
@ApiModelProperty(value = "承租单位")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer companyId;
|
|
|
|
@ApiModelProperty(value = "企业名称")
|
|
@TableField(exist = false)
|
|
private String companyName;
|
|
|
|
@ApiModelProperty(value = "状态(0未起租1起租2中途报停3报停复工4拆卸停租)")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Boolean status;
|
|
|
|
@ApiModelProperty(value = "所有人")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer userId;
|
|
|
|
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer deleted;
|
|
|
|
}
|