新增历史结算;

新增租单管理
This commit is contained in:
2023-06-13 01:44:40 +08:00
parent 8307a16689
commit 65f21b7d0a
4 changed files with 15 additions and 5 deletions

View File

@@ -32,9 +32,17 @@ public class TowerEquipment implements Serializable {
@ApiModelProperty(value = "设备名称") @ApiModelProperty(value = "设备名称")
private String name; private String name;
@ApiModelProperty(value = "设备名称")
@TableField(exist = false)
private String equipmentName;
@ApiModelProperty(value = "设备型号") @ApiModelProperty(value = "设备型号")
private String model; private String model;
@ApiModelProperty(value = "设备型号")
@TableField(exist = false)
private String equipmentModel;
@ApiModelProperty(value = "设备编号") @ApiModelProperty(value = "设备编号")
private String equipmentNo; private String equipmentNo;

View File

@@ -42,7 +42,7 @@ public class TowerFall implements Serializable {
private Integer companyId; private Integer companyId;
@ApiModelProperty(value = "产权单位名称") @ApiModelProperty(value = "产权单位名称")
@TableField(exist = false) // @TableField(exist = false)
private String companyName; private String companyName;
@ApiModelProperty(value = "出厂日期") @ApiModelProperty(value = "出厂日期")

View File

@@ -49,9 +49,9 @@
<if test="param.comments != null"> <if test="param.comments != null">
AND a.comments LIKE CONCAT('%', #{param.comments}, '%') AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
</if> </if>
<if test="param.username != null"> <!-- <if test="param.username != null">-->
AND a.username = #{param.username} <!-- AND a.username = #{param.username}-->
</if> <!-- </if>-->
<if test="param.deleted != null"> <if test="param.deleted != null">
AND a.deleted = #{param.deleted} AND a.deleted = #{param.deleted}
</if> </if>

View File

@@ -48,8 +48,10 @@ public class TowerGenerator {
// "tower_model" // "tower_model"
// "tower_contract", // "tower_contract",
// "tower_contract_equipment", // "tower_contract_equipment",
"tower_settle", // "tower_settle",
// "tower_settle_detail", // "tower_settle_detail",
// "tower_history_settle",
"tower_rent_record",
}; };
// 需要去除的表前缀 // 需要去除的表前缀
private static final String[] TABLE_PREFIX = new String[]{ private static final String[] TABLE_PREFIX = new String[]{