新增客户管理;
新增合同管理
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
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-09 13:42:20
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerContractEquipmentParam对象", description = "合同设备清单查询参数")
|
||||
public class TowerContractEquipmentParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer contractEquipmentId;
|
||||
|
||||
@ApiModelProperty(value = "合同ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer contractId;
|
||||
|
||||
@ApiModelProperty(value = "设备")
|
||||
private String equipmentName;
|
||||
|
||||
@ApiModelProperty(value = "型号")
|
||||
private String equipmentModel;
|
||||
|
||||
@ApiModelProperty(value = "签订数量")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer num;
|
||||
|
||||
@ApiModelProperty(value = "计划租期(月)")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer planRentMonth;
|
||||
|
||||
@ApiModelProperty(value = "租金")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal rentAmount;
|
||||
|
||||
@ApiModelProperty(value = "进退场费")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal inOutAmount;
|
||||
|
||||
@ApiModelProperty(value = "劳务费")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal workerAmount;
|
||||
|
||||
@ApiModelProperty(value = "其他费用")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal otherAmount;
|
||||
|
||||
@ApiModelProperty(value = "预埋费")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal preBuryAmount;
|
||||
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 合同附件查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-06-09 13:42:20
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerContractFileParam对象", description = "合同附件查询参数")
|
||||
public class TowerContractFileParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer contractFileId;
|
||||
|
||||
@ApiModelProperty(value = "合同id")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer contractId;
|
||||
|
||||
@ApiModelProperty(value = "文件路径")
|
||||
private String path;
|
||||
|
||||
@ApiModelProperty(value = "文件类型")
|
||||
private String type;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
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-08 22:36:47
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerContractParam对象", description = "合同存档查询参数")
|
||||
public class TowerContractParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer contractId;
|
||||
|
||||
@ApiModelProperty(value = "项目ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer projectId;
|
||||
|
||||
@ApiModelProperty(value = "出租单位")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer companyId;
|
||||
|
||||
@ApiModelProperty(value = "承租单位")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer customerId;
|
||||
|
||||
@ApiModelProperty(value = "业务负责人")
|
||||
private String customerContact;
|
||||
|
||||
@ApiModelProperty(value = "合同编号")
|
||||
private String contactNumber;
|
||||
|
||||
@ApiModelProperty(value = "签订日期")
|
||||
private String signDate;
|
||||
|
||||
@ApiModelProperty(value = "开始日期")
|
||||
private String startDate;
|
||||
|
||||
@ApiModelProperty(value = "截止日期")
|
||||
private String endDate;
|
||||
|
||||
@ApiModelProperty(value = "合同金额")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal contractAmount;
|
||||
|
||||
@ApiModelProperty(value = "合同约定金额")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal contactAgreeAmount;
|
||||
|
||||
@ApiModelProperty(value = "合同存档0未存档,1已存档")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Boolean isInStock;
|
||||
|
||||
@ApiModelProperty(value = "是否自动结算")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Boolean autoSettle;
|
||||
|
||||
@ApiModelProperty(value = "已生成结算次数")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer settleNum;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 客户管理查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-06-08 21:04:27
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerCustomerParam对象", description = "客户管理查询参数")
|
||||
public class TowerCustomerParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer customerId;
|
||||
|
||||
@ApiModelProperty(value = "客户名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value = "全称")
|
||||
private String fullName;
|
||||
|
||||
@ApiModelProperty(value = "客户标识")
|
||||
private String creditCode;
|
||||
|
||||
@ApiModelProperty(value = "地址")
|
||||
private String address;
|
||||
|
||||
@ApiModelProperty(value = "联系人")
|
||||
private String contact;
|
||||
|
||||
@ApiModelProperty(value = "座机")
|
||||
private String phone;
|
||||
|
||||
@ApiModelProperty(value = "手机")
|
||||
private String telPhone;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer sortNumber;
|
||||
|
||||
@ApiModelProperty(value = "头像")
|
||||
private String avatar;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Boolean deleted;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user