新增收款;

新增项目结算书
This commit is contained in:
2023-06-18 11:02:37 +08:00
parent d61e7b163d
commit 71e28fd448
53 changed files with 2985 additions and 9 deletions

View File

@@ -0,0 +1,82 @@
package com.gxwebsoft.tower.param;
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 2023-06-17 17:06:39
*/
@Data
@EqualsAndHashCode(callSuper = false)
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "TowerIncomeParam对象", description = "收款管理查询参数")
public class TowerIncomeParam extends BaseParam {
private static final long serialVersionUID = 1L;
@QueryField(type = QueryType.EQ)
private Integer incomeId;
@ApiModelProperty(value = "合同ID")
@QueryField(type = QueryType.EQ)
private Integer contractId;
@ApiModelProperty(value = "收款单号")
private String incomeNo;
@ApiModelProperty(value = "收款日期")
private String incomeDate;
@ApiModelProperty(value = "收款单位")
@QueryField(type = QueryType.EQ)
private Integer incomeCompanyId;
@ApiModelProperty(value = "收款金额")
@QueryField(type = QueryType.EQ)
private BigDecimal amount;
@ApiModelProperty(value = "收款类型")
private String incomeType;
@ApiModelProperty(value = "预计收款日期")
private String expectIncomeDate;
@ApiModelProperty(value = "预计收款金额")
@QueryField(type = QueryType.EQ)
private BigDecimal expectIncomeAmount;
@ApiModelProperty(value = "收款方式")
private String incomeMethod;
@ApiModelProperty(value = "发票号")
private String invoicingNo;
@ApiModelProperty(value = "附件")
private String fileList;
@ApiModelProperty(value = "备注")
private String remark;
@ApiModelProperty(value = "收款状态(0已收款1已作废)")
@QueryField(type = QueryType.EQ)
private Integer status;
@ApiModelProperty(value = "所有人")
@QueryField(type = QueryType.EQ)
private Integer userId;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@QueryField(type = QueryType.EQ)
private Integer deleted;
}