diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateOrUpdateBillingTemplateDTO.java b/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateOrUpdateBillingTemplateDTO.java index b0f14bb25..c0fb6a8a4 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateOrUpdateBillingTemplateDTO.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/dto/CreateOrUpdateBillingTemplateDTO.java @@ -79,7 +79,7 @@ public class CreateOrUpdateBillingTemplateDTO { * 备注 */ @ApiModelProperty("备注") - private String remark; + private String templateRemark; /** * 时段清单 diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileBillingTemplateServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileBillingTemplateServiceImpl.java index 7ffeb82f4..df13fcc46 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileBillingTemplateServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/PileBillingTemplateServiceImpl.java @@ -167,7 +167,7 @@ public class PileBillingTemplateServiceImpl implements PileBillingTemplateServic PileBillingTemplate billingTemplate = new PileBillingTemplate(); billingTemplate.setName(dto.getName()); billingTemplate.setType(String.valueOf(dto.getType())); - billingTemplate.setTemplateRemark(dto.getRemark()); + billingTemplate.setTemplateRemark(dto.getTemplateRemark()); billingTemplate.setTemplateCode(templateCode); billingTemplate.setCreateBy(SecurityUtils.getUsername()); billingTemplate.setDelFlag(DelFlagEnum.NORMAL.getValue()); @@ -233,7 +233,7 @@ public class PileBillingTemplateServiceImpl implements PileBillingTemplateServic // 查询站点信息 billingTemplate.setName(dto.getName()); billingTemplate.setType(String.valueOf(dto.getType())); - billingTemplate.setTemplateRemark(dto.getRemark()); + billingTemplate.setTemplateRemark(dto.getTemplateRemark()); billingTemplate.setUpdateBy(SecurityUtils.getUsername()); billingTemplate.setFreeTime(dto.getFreeTime()); billingTemplate.setOccupyFee(dto.getOccupyFee()); @@ -308,7 +308,7 @@ public class PileBillingTemplateServiceImpl implements PileBillingTemplateServic EchoBillingTemplateVO result = new EchoBillingTemplateVO(); result.setBillingTemplateId(String.valueOf(id)); result.setName(pileBillingTemplate.getName()); - result.setRemark(pileBillingTemplate.getRemark()); + result.setTemplateRemark(pileBillingTemplate.getTemplateRemark()); result.setType(pileBillingTemplate.getType()); result.setFreeTime(pileBillingTemplate.getFreeTime()); result.setOccupyFee(pileBillingTemplate.getOccupyFee()); diff --git a/jsowell-pile/src/main/resources/mapper/pile/PileBillingTemplateMapper.xml b/jsowell-pile/src/main/resources/mapper/pile/PileBillingTemplateMapper.xml index 72fcee2f3..e474297b1 100644 --- a/jsowell-pile/src/main/resources/mapper/pile/PileBillingTemplateMapper.xml +++ b/jsowell-pile/src/main/resources/mapper/pile/PileBillingTemplateMapper.xml @@ -8,7 +8,7 @@ - + @@ -26,7 +26,7 @@ - id, template_code, name, status, remark, template_desc, type, station_id, free_time, occupy_fee, max_occupy_fee, public_flag, + id, template_code, name, status, template_remark, template_desc, type, station_id, free_time, occupy_fee, max_occupy_fee, public_flag, member_flag, create_time, update_by, update_time, del_flag @@ -91,7 +91,7 @@ a.free_time, a.occupy_fee, a.max_occupy_fee, - a.remark, + a.template_remark, a.type, a.station_id, a.create_by, diff --git a/jsowell-ui/src/views/billing/template/components/addBilling.vue b/jsowell-ui/src/views/billing/template/components/addBilling.vue index 8ec4f84ef..2aaab4634 100644 --- a/jsowell-ui/src/views/billing/template/components/addBilling.vue +++ b/jsowell-ui/src/views/billing/template/components/addBilling.vue @@ -12,9 +12,9 @@ placeholder="请输入模板名称" /> - + @@ -507,7 +507,7 @@ export default { ], type: "1", name: "", - remark: "", + templateRemark: "", minMoney: "", minute: "", }, diff --git a/jsowell-ui/src/views/billing/template/components/addOrUpdateBilling.vue b/jsowell-ui/src/views/billing/template/components/addOrUpdateBilling.vue index 924f3968e..8b12e5abd 100644 --- a/jsowell-ui/src/views/billing/template/components/addOrUpdateBilling.vue +++ b/jsowell-ui/src/views/billing/template/components/addOrUpdateBilling.vue @@ -14,9 +14,9 @@ placeholder="请输入模板名称" /> - + @@ -328,7 +328,7 @@ export default { servicePriceC: "", electricityPriceD: "", servicePriceD: "", - remark: "", // 备注 + templateRemark: "", // 备注 timeList: [], // 汽车 }, // 新增时间段弹框 diff --git a/jsowell-ui/src/views/billing/template/components/chargeable .vue b/jsowell-ui/src/views/billing/template/components/chargeable .vue index b54fb51b2..c201b4be1 100644 --- a/jsowell-ui/src/views/billing/template/components/chargeable .vue +++ b/jsowell-ui/src/views/billing/template/components/chargeable .vue @@ -10,8 +10,8 @@ - - + + diff --git a/jsowell-ui/src/views/billing/template/index.vue b/jsowell-ui/src/views/billing/template/index.vue index ee7db798a..21f9b6c92 100644 --- a/jsowell-ui/src/views/billing/template/index.vue +++ b/jsowell-ui/src/views/billing/template/index.vue @@ -81,7 +81,7 @@ - +