parent
762abba143
commit
57fee04c5d
@ -0,0 +1,104 @@ |
||||
package com.jianshui.web.controller.platform; |
||||
|
||||
import java.util.List; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import org.springframework.security.access.prepost.PreAuthorize; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.PutMapping; |
||||
import org.springframework.web.bind.annotation.DeleteMapping; |
||||
import org.springframework.web.bind.annotation.PathVariable; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import com.jianshui.common.annotation.Log; |
||||
import com.jianshui.common.core.controller.BaseController; |
||||
import com.jianshui.common.core.domain.AjaxResult; |
||||
import com.jianshui.common.enums.BusinessType; |
||||
import com.jianshui.platform.domain.VehicleCode; |
||||
import com.jianshui.platform.service.IVehicleCodeService; |
||||
import com.jianshui.common.utils.poi.ExcelUtil; |
||||
import com.jianshui.common.core.page.TableDataInfo; |
||||
|
||||
/** |
||||
* 车辆编码Controller |
||||
* |
||||
* @author kk |
||||
* @date 2023-06-28 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/platform/vehiclecode") |
||||
public class VehicleCodeController extends BaseController |
||||
{ |
||||
@Autowired |
||||
private IVehicleCodeService vehicleCodeService; |
||||
|
||||
/** |
||||
* 查询车辆编码列表 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:list')") |
||||
@GetMapping("/list") |
||||
public TableDataInfo list(VehicleCode vehicleCode) |
||||
{ |
||||
startPage(); |
||||
List<VehicleCode> list = vehicleCodeService.selectVehicleCodeList(vehicleCode); |
||||
return getDataTable(list); |
||||
} |
||||
|
||||
/** |
||||
* 导出车辆编码列表 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:export')") |
||||
@Log(title = "车辆编码", businessType = BusinessType.EXPORT) |
||||
@PostMapping("/export") |
||||
public void export(HttpServletResponse response, VehicleCode vehicleCode) |
||||
{ |
||||
List<VehicleCode> list = vehicleCodeService.selectVehicleCodeList(vehicleCode); |
||||
ExcelUtil<VehicleCode> util = new ExcelUtil<VehicleCode>(VehicleCode.class); |
||||
util.exportExcel(response, list, "车辆编码数据"); |
||||
} |
||||
|
||||
/** |
||||
* 获取车辆编码详细信息 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:query')") |
||||
@GetMapping(value = "/{id}") |
||||
public AjaxResult getInfo(@PathVariable("id") Long id) |
||||
{ |
||||
return AjaxResult.success(vehicleCodeService.selectVehicleCodeById(id)); |
||||
} |
||||
|
||||
/** |
||||
* 新增车辆编码 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:add')") |
||||
@Log(title = "车辆编码", businessType = BusinessType.INSERT) |
||||
@PostMapping |
||||
public AjaxResult add(@RequestBody VehicleCode vehicleCode) |
||||
{ |
||||
return toAjax(vehicleCodeService.insertVehicleCode(vehicleCode)); |
||||
} |
||||
|
||||
/** |
||||
* 修改车辆编码 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:edit')") |
||||
@Log(title = "车辆编码", businessType = BusinessType.UPDATE) |
||||
@PutMapping |
||||
public AjaxResult edit(@RequestBody VehicleCode vehicleCode) |
||||
{ |
||||
return toAjax(vehicleCodeService.updateVehicleCode(vehicleCode)); |
||||
} |
||||
|
||||
/** |
||||
* 删除车辆编码 |
||||
*/ |
||||
@PreAuthorize("@ss.hasPermi('platform:vehiclecode:remove')") |
||||
@Log(title = "车辆编码", businessType = BusinessType.DELETE) |
||||
@DeleteMapping("/{ids}") |
||||
public AjaxResult remove(@PathVariable Long[] ids) |
||||
{ |
||||
return toAjax(vehicleCodeService.deleteVehicleCodeByIds(ids)); |
||||
} |
||||
} |
@ -0,0 +1,196 @@ |
||||
package com.jianshui.platform.domain; |
||||
|
||||
import com.jianshui.common.annotation.Excel; |
||||
import com.jianshui.common.core.domain.BaseEntity; |
||||
import net.logstash.logback.encoder.org.apache.commons.lang3.builder.ToStringBuilder; |
||||
import net.logstash.logback.encoder.org.apache.commons.lang3.builder.ToStringStyle; |
||||
|
||||
/** |
||||
* 车辆编码对象 vehicle_code |
||||
* |
||||
* @author kk |
||||
* @date 2023-06-28 |
||||
*/ |
||||
public class VehicleCode extends BaseEntity |
||||
{ |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** ID */ |
||||
private Long id; |
||||
|
||||
/** 车辆编码 */ |
||||
@Excel(name = "车辆编码") |
||||
private String vehicleCode; |
||||
|
||||
/** 车辆类型 */ |
||||
@Excel(name = "车辆类型") |
||||
private String vehicleType; |
||||
|
||||
/** 厂牌型号 */ |
||||
@Excel(name = "厂牌型号") |
||||
private String brandModel; |
||||
|
||||
/** 产地 */ |
||||
@Excel(name = "产地") |
||||
private String origin; |
||||
|
||||
/** 生产企业名称 */ |
||||
@Excel(name = "生产企业名称") |
||||
private String manufacturerName; |
||||
|
||||
/** 税收分类编码 */ |
||||
@Excel(name = "税收分类编码") |
||||
private String taxCategoryCode; |
||||
|
||||
/** 税收分类编码ID */ |
||||
@Excel(name = "税收分类编码ID") |
||||
private Long taxCategoryCodeId; |
||||
|
||||
/** 税收分类编码简称 */ |
||||
@Excel(name = "税收分类编码简称") |
||||
private String taxCategoryAbbreviation; |
||||
|
||||
/** 是否享受优惠政策 */ |
||||
@Excel(name = "是否享受优惠政策") |
||||
private String isQualifiedForDiscount; |
||||
|
||||
/** 优惠政策类型 */ |
||||
@Excel(name = "优惠政策类型") |
||||
private String discountPolicyType; |
||||
|
||||
/** 状态 */ |
||||
@Excel(name = "状态") |
||||
private String status; |
||||
|
||||
public void setId(Long id) |
||||
{ |
||||
this.id = id; |
||||
} |
||||
|
||||
public Long getId() |
||||
{ |
||||
return id; |
||||
} |
||||
public void setVehicleCode(String vehicleCode) |
||||
{ |
||||
this.vehicleCode = vehicleCode; |
||||
} |
||||
|
||||
public String getVehicleCode() |
||||
{ |
||||
return vehicleCode; |
||||
} |
||||
public void setVehicleType(String vehicleType) |
||||
{ |
||||
this.vehicleType = vehicleType; |
||||
} |
||||
|
||||
public String getVehicleType() |
||||
{ |
||||
return vehicleType; |
||||
} |
||||
public void setBrandModel(String brandModel) |
||||
{ |
||||
this.brandModel = brandModel; |
||||
} |
||||
|
||||
public String getBrandModel() |
||||
{ |
||||
return brandModel; |
||||
} |
||||
public void setOrigin(String origin) |
||||
{ |
||||
this.origin = origin; |
||||
} |
||||
|
||||
public String getOrigin() |
||||
{ |
||||
return origin; |
||||
} |
||||
public void setManufacturerName(String manufacturerName) |
||||
{ |
||||
this.manufacturerName = manufacturerName; |
||||
} |
||||
|
||||
public String getManufacturerName() |
||||
{ |
||||
return manufacturerName; |
||||
} |
||||
public void setTaxCategoryCode(String taxCategoryCode) |
||||
{ |
||||
this.taxCategoryCode = taxCategoryCode; |
||||
} |
||||
|
||||
public String getTaxCategoryCode() |
||||
{ |
||||
return taxCategoryCode; |
||||
} |
||||
public void setTaxCategoryCodeId(Long taxCategoryCodeId) |
||||
{ |
||||
this.taxCategoryCodeId = taxCategoryCodeId; |
||||
} |
||||
|
||||
public Long getTaxCategoryCodeId() |
||||
{ |
||||
return taxCategoryCodeId; |
||||
} |
||||
public void setTaxCategoryAbbreviation(String taxCategoryAbbreviation) |
||||
{ |
||||
this.taxCategoryAbbreviation = taxCategoryAbbreviation; |
||||
} |
||||
|
||||
public String getTaxCategoryAbbreviation() |
||||
{ |
||||
return taxCategoryAbbreviation; |
||||
} |
||||
public void setIsQualifiedForDiscount(String isQualifiedForDiscount) |
||||
{ |
||||
this.isQualifiedForDiscount = isQualifiedForDiscount; |
||||
} |
||||
|
||||
public String getIsQualifiedForDiscount() |
||||
{ |
||||
return isQualifiedForDiscount; |
||||
} |
||||
public void setDiscountPolicyType(String discountPolicyType) |
||||
{ |
||||
this.discountPolicyType = discountPolicyType; |
||||
} |
||||
|
||||
public String getDiscountPolicyType() |
||||
{ |
||||
return discountPolicyType; |
||||
} |
||||
public void setStatus(String status) |
||||
{ |
||||
this.status = status; |
||||
} |
||||
|
||||
public String getStatus() |
||||
{ |
||||
return status; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
||||
.append("id", getId()) |
||||
.append("vehicleCode", getVehicleCode()) |
||||
.append("vehicleType", getVehicleType()) |
||||
.append("brandModel", getBrandModel()) |
||||
.append("origin", getOrigin()) |
||||
.append("manufacturerName", getManufacturerName()) |
||||
.append("taxCategoryCode", getTaxCategoryCode()) |
||||
.append("taxCategoryCodeId", getTaxCategoryCodeId()) |
||||
.append("taxCategoryAbbreviation", getTaxCategoryAbbreviation()) |
||||
.append("isQualifiedForDiscount", getIsQualifiedForDiscount()) |
||||
.append("discountPolicyType", getDiscountPolicyType()) |
||||
.append("status", getStatus()) |
||||
.append("createBy", getCreateBy()) |
||||
.append("createTime", getCreateTime()) |
||||
.append("updateBy", getUpdateBy()) |
||||
.append("updateTime", getUpdateTime()) |
||||
.append("remark", getRemark()) |
||||
.toString(); |
||||
} |
||||
} |
@ -0,0 +1,61 @@ |
||||
package com.jianshui.platform.mapper; |
||||
|
||||
import java.util.List; |
||||
import com.jianshui.platform.domain.VehicleCode; |
||||
|
||||
/** |
||||
* 车辆编码Mapper接口 |
||||
* |
||||
* @author kk |
||||
* @date 2023-06-28 |
||||
*/ |
||||
public interface VehicleCodeMapper |
||||
{ |
||||
/** |
||||
* 查询车辆编码 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 车辆编码 |
||||
*/ |
||||
public VehicleCode selectVehicleCodeById(Long id); |
||||
|
||||
/** |
||||
* 查询车辆编码列表 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 车辆编码集合 |
||||
*/ |
||||
public List<VehicleCode> selectVehicleCodeList(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 新增车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
public int insertVehicleCode(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 修改车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
public int updateVehicleCode(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 删除车辆编码 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 结果 |
||||
*/ |
||||
public int deleteVehicleCodeById(Long id); |
||||
|
||||
/** |
||||
* 批量删除车辆编码 |
||||
* |
||||
* @param ids 需要删除的数据主键集合 |
||||
* @return 结果 |
||||
*/ |
||||
public int deleteVehicleCodeByIds(Long[] ids); |
||||
} |
@ -0,0 +1,61 @@ |
||||
package com.jianshui.platform.service; |
||||
|
||||
import java.util.List; |
||||
import com.jianshui.platform.domain.VehicleCode; |
||||
|
||||
/** |
||||
* 车辆编码Service接口 |
||||
* |
||||
* @author kk |
||||
* @date 2023-06-28 |
||||
*/ |
||||
public interface IVehicleCodeService |
||||
{ |
||||
/** |
||||
* 查询车辆编码 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 车辆编码 |
||||
*/ |
||||
public VehicleCode selectVehicleCodeById(Long id); |
||||
|
||||
/** |
||||
* 查询车辆编码列表 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 车辆编码集合 |
||||
*/ |
||||
public List<VehicleCode> selectVehicleCodeList(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 新增车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
public int insertVehicleCode(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 修改车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
public int updateVehicleCode(VehicleCode vehicleCode); |
||||
|
||||
/** |
||||
* 批量删除车辆编码 |
||||
* |
||||
* @param ids 需要删除的车辆编码主键集合 |
||||
* @return 结果 |
||||
*/ |
||||
public int deleteVehicleCodeByIds(Long[] ids); |
||||
|
||||
/** |
||||
* 删除车辆编码信息 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 结果 |
||||
*/ |
||||
public int deleteVehicleCodeById(Long id); |
||||
} |
@ -0,0 +1,98 @@ |
||||
package com.jianshui.platform.service.impl; |
||||
|
||||
import java.util.List; |
||||
import com.jianshui.common.utils.DateUtils; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Service; |
||||
import com.jianshui.platform.mapper.VehicleCodeMapper; |
||||
import com.jianshui.platform.domain.VehicleCode; |
||||
import com.jianshui.platform.service.IVehicleCodeService; |
||||
|
||||
/** |
||||
* 车辆编码Service业务层处理 |
||||
* |
||||
* @author kk |
||||
* @date 2023-06-28 |
||||
*/ |
||||
@Service |
||||
public class VehicleCodeServiceImpl implements IVehicleCodeService |
||||
{ |
||||
@Autowired |
||||
private VehicleCodeMapper vehicleCodeMapper; |
||||
|
||||
/** |
||||
* 查询车辆编码 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 车辆编码 |
||||
*/ |
||||
@Override |
||||
public VehicleCode selectVehicleCodeById(Long id) |
||||
{ |
||||
return vehicleCodeMapper.selectVehicleCodeById(id); |
||||
} |
||||
|
||||
/** |
||||
* 查询车辆编码列表 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 车辆编码 |
||||
*/ |
||||
@Override |
||||
public List<VehicleCode> selectVehicleCodeList(VehicleCode vehicleCode) |
||||
{ |
||||
List<VehicleCode> vehicleCodeList = vehicleCodeMapper.selectVehicleCodeList(vehicleCode); |
||||
|
||||
return vehicleCodeMapper.selectVehicleCodeList(vehicleCode); |
||||
} |
||||
|
||||
/** |
||||
* 新增车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
@Override |
||||
public int insertVehicleCode(VehicleCode vehicleCode) |
||||
{ |
||||
vehicleCode.setCreateTime(DateUtils.getNowDate()); |
||||
return vehicleCodeMapper.insertVehicleCode(vehicleCode); |
||||
} |
||||
|
||||
/** |
||||
* 修改车辆编码 |
||||
* |
||||
* @param vehicleCode 车辆编码 |
||||
* @return 结果 |
||||
*/ |
||||
@Override |
||||
public int updateVehicleCode(VehicleCode vehicleCode) |
||||
{ |
||||
vehicleCode.setUpdateTime(DateUtils.getNowDate()); |
||||
return vehicleCodeMapper.updateVehicleCode(vehicleCode); |
||||
} |
||||
|
||||
/** |
||||
* 批量删除车辆编码 |
||||
* |
||||
* @param ids 需要删除的车辆编码主键 |
||||
* @return 结果 |
||||
*/ |
||||
@Override |
||||
public int deleteVehicleCodeByIds(Long[] ids) |
||||
{ |
||||
return vehicleCodeMapper.deleteVehicleCodeByIds(ids); |
||||
} |
||||
|
||||
/** |
||||
* 删除车辆编码信息 |
||||
* |
||||
* @param id 车辆编码主键 |
||||
* @return 结果 |
||||
*/ |
||||
@Override |
||||
public int deleteVehicleCodeById(Long id) |
||||
{ |
||||
return vehicleCodeMapper.deleteVehicleCodeById(id); |
||||
} |
||||
} |
@ -0,0 +1,126 @@ |
||||
<?xml version="1.0" encoding="UTF-8" ?> |
||||
<!DOCTYPE mapper |
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.jianshui.platform.mapper.VehicleCodeMapper"> |
||||
|
||||
<resultMap type="VehicleCode" id="VehicleCodeResult"> |
||||
<result property="id" column="id" /> |
||||
<result property="vehicleCode" column="vehicle_code" /> |
||||
<result property="vehicleType" column="vehicle_type" /> |
||||
<result property="brandModel" column="brand_model" /> |
||||
<result property="origin" column="origin" /> |
||||
<result property="manufacturerName" column="manufacturer_name" /> |
||||
<result property="taxCategoryCode" column="tax_category_code" /> |
||||
<result property="taxCategoryCodeId" column="tax_category_code_id" /> |
||||
<result property="taxCategoryAbbreviation" column="tax_category_abbreviation" /> |
||||
<result property="isQualifiedForDiscount" column="is_qualified_for_discount" /> |
||||
<result property="discountPolicyType" column="discount_policy_type" /> |
||||
<result property="status" column="status" /> |
||||
<result property="createBy" column="create_by" /> |
||||
<result property="createTime" column="create_time" /> |
||||
<result property="updateBy" column="update_by" /> |
||||
<result property="updateTime" column="update_time" /> |
||||
<result property="remark" column="remark" /> |
||||
</resultMap> |
||||
|
||||
<sql id="selectVehicleCodeVo"> |
||||
select id, vehicle_code, vehicle_type, brand_model, origin, manufacturer_name, tax_category_code, tax_category_code_id, tax_category_abbreviation, is_qualified_for_discount, discount_policy_type, status, create_by, create_time, update_by, update_time, remark from vehicle_code |
||||
</sql> |
||||
|
||||
<select id="selectVehicleCodeList" parameterType="VehicleCode" resultMap="VehicleCodeResult"> |
||||
<include refid="selectVehicleCodeVo"/> |
||||
<where> |
||||
<if test="vehicleCode != null and vehicleCode != ''"> and vehicle_code = #{vehicleCode}</if> |
||||
<if test="vehicleType != null and vehicleType != ''"> and vehicle_type = #{vehicleType}</if> |
||||
<if test="brandModel != null and brandModel != ''"> and brand_model = #{brandModel}</if> |
||||
<if test="origin != null and origin != ''"> and origin = #{origin}</if> |
||||
<if test="manufacturerName != null and manufacturerName != ''"> and manufacturer_name like concat('%', #{manufacturerName}, '%')</if> |
||||
<if test="taxCategoryCode != null and taxCategoryCode != ''"> and tax_category_code = #{taxCategoryCode}</if> |
||||
<if test="taxCategoryCodeId != null "> and tax_category_code_id = #{taxCategoryCodeId}</if> |
||||
<if test="taxCategoryAbbreviation != null and taxCategoryAbbreviation != ''"> and tax_category_abbreviation = #{taxCategoryAbbreviation}</if> |
||||
<if test="isQualifiedForDiscount != null and isQualifiedForDiscount != ''"> and is_qualified_for_discount = #{isQualifiedForDiscount}</if> |
||||
<if test="discountPolicyType != null and discountPolicyType != ''"> and discount_policy_type = #{discountPolicyType}</if> |
||||
<if test="status != null and status != ''"> and status = #{status}</if> |
||||
</where> |
||||
</select> |
||||
|
||||
<select id="selectVehicleCodeById" parameterType="Long" resultMap="VehicleCodeResult"> |
||||
<include refid="selectVehicleCodeVo"/> |
||||
where id = #{id} |
||||
</select> |
||||
|
||||
<insert id="insertVehicleCode" parameterType="VehicleCode" useGeneratedKeys="true" keyProperty="id"> |
||||
insert into vehicle_code |
||||
<trim prefix="(" suffix=")" suffixOverrides=","> |
||||
<if test="vehicleCode != null and vehicleCode != ''">vehicle_code,</if> |
||||
<if test="vehicleType != null">vehicle_type,</if> |
||||
<if test="brandModel != null">brand_model,</if> |
||||
<if test="origin != null">origin,</if> |
||||
<if test="manufacturerName != null">manufacturer_name,</if> |
||||
<if test="taxCategoryCode != null">tax_category_code,</if> |
||||
<if test="taxCategoryCodeId != null">tax_category_code_id,</if> |
||||
<if test="taxCategoryAbbreviation != null">tax_category_abbreviation,</if> |
||||
<if test="isQualifiedForDiscount != null">is_qualified_for_discount,</if> |
||||
<if test="discountPolicyType != null">discount_policy_type,</if> |
||||
<if test="status != null">status,</if> |
||||
<if test="createBy != null">create_by,</if> |
||||
<if test="createTime != null">create_time,</if> |
||||
<if test="updateBy != null">update_by,</if> |
||||
<if test="updateTime != null">update_time,</if> |
||||
<if test="remark != null">remark,</if> |
||||
</trim> |
||||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
||||
<if test="vehicleCode != null and vehicleCode != ''">#{vehicleCode},</if> |
||||
<if test="vehicleType != null">#{vehicleType},</if> |
||||
<if test="brandModel != null">#{brandModel},</if> |
||||
<if test="origin != null">#{origin},</if> |
||||
<if test="manufacturerName != null">#{manufacturerName},</if> |
||||
<if test="taxCategoryCode != null">#{taxCategoryCode},</if> |
||||
<if test="taxCategoryCodeId != null">#{taxCategoryCodeId},</if> |
||||
<if test="taxCategoryAbbreviation != null">#{taxCategoryAbbreviation},</if> |
||||
<if test="isQualifiedForDiscount != null">#{isQualifiedForDiscount},</if> |
||||
<if test="discountPolicyType != null">#{discountPolicyType},</if> |
||||
<if test="status != null">#{status},</if> |
||||
<if test="createBy != null">#{createBy},</if> |
||||
<if test="createTime != null">#{createTime},</if> |
||||
<if test="updateBy != null">#{updateBy},</if> |
||||
<if test="updateTime != null">#{updateTime},</if> |
||||
<if test="remark != null">#{remark},</if> |
||||
</trim> |
||||
</insert> |
||||
|
||||
<update id="updateVehicleCode" parameterType="VehicleCode"> |
||||
update vehicle_code |
||||
<trim prefix="SET" suffixOverrides=","> |
||||
<if test="vehicleCode != null and vehicleCode != ''">vehicle_code = #{vehicleCode},</if> |
||||
<if test="vehicleType != null">vehicle_type = #{vehicleType},</if> |
||||
<if test="brandModel != null">brand_model = #{brandModel},</if> |
||||
<if test="origin != null">origin = #{origin},</if> |
||||
<if test="manufacturerName != null">manufacturer_name = #{manufacturerName},</if> |
||||
<if test="taxCategoryCode != null">tax_category_code = #{taxCategoryCode},</if> |
||||
<if test="taxCategoryCodeId != null">tax_category_code_id = #{taxCategoryCodeId},</if> |
||||
<if test="taxCategoryAbbreviation != null">tax_category_abbreviation = #{taxCategoryAbbreviation},</if> |
||||
<if test="isQualifiedForDiscount != null">is_qualified_for_discount = #{isQualifiedForDiscount},</if> |
||||
<if test="discountPolicyType != null">discount_policy_type = #{discountPolicyType},</if> |
||||
<if test="status != null">status = #{status},</if> |
||||
<if test="createBy != null">create_by = #{createBy},</if> |
||||
<if test="createTime != null">create_time = #{createTime},</if> |
||||
<if test="updateBy != null">update_by = #{updateBy},</if> |
||||
<if test="updateTime != null">update_time = #{updateTime},</if> |
||||
<if test="remark != null">remark = #{remark},</if> |
||||
</trim> |
||||
where id = #{id} |
||||
</update> |
||||
|
||||
<delete id="deleteVehicleCodeById" parameterType="Long"> |
||||
delete from vehicle_code where id = #{id} |
||||
</delete> |
||||
|
||||
<delete id="deleteVehicleCodeByIds" parameterType="String"> |
||||
delete from vehicle_code where id in |
||||
<foreach item="id" collection="array" open="(" separator="," close=")"> |
||||
#{id} |
||||
</foreach> |
||||
</delete> |
||||
</mapper> |
@ -0,0 +1,44 @@ |
||||
import request from '@/utils/request' |
||||
|
||||
// 查询车辆编码列表
|
||||
export function listVehiclecode(query) { |
||||
return request({ |
||||
url: '/platform/vehiclecode/list', |
||||
method: 'get', |
||||
params: query |
||||
}) |
||||
} |
||||
|
||||
// 查询车辆编码详细
|
||||
export function getVehiclecode(id) { |
||||
return request({ |
||||
url: '/platform/vehiclecode/' + id, |
||||
method: 'get' |
||||
}) |
||||
} |
||||
|
||||
// 新增车辆编码
|
||||
export function addVehiclecode(data) { |
||||
return request({ |
||||
url: '/platform/vehiclecode', |
||||
method: 'post', |
||||
data: data |
||||
}) |
||||
} |
||||
|
||||
// 修改车辆编码
|
||||
export function updateVehiclecode(data) { |
||||
return request({ |
||||
url: '/platform/vehiclecode', |
||||
method: 'put', |
||||
data: data |
||||
}) |
||||
} |
||||
|
||||
// 删除车辆编码
|
||||
export function delVehiclecode(id) { |
||||
return request({ |
||||
url: '/platform/vehiclecode/' + id, |
||||
method: 'delete' |
||||
}) |
||||
} |
@ -0,0 +1,409 @@ |
||||
<template> |
||||
<div class="app-container"> |
||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> |
||||
<el-form-item label="车辆编码" prop="vehicleCode"> |
||||
<el-input |
||||
v-model="queryParams.vehicleCode" |
||||
placeholder="请输入车辆编码" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="车辆类型" prop="vehicleType"> |
||||
<!-- <el-input |
||||
v-model="queryParams.vehicleType" |
||||
placeholder="请输入车辆类型" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/>--> |
||||
<el-select |
||||
v-model="queryParams.vehicleType" |
||||
placeholder="请选择车辆类型" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
> |
||||
<el-option v-for="dict in dict.type.vehicle_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option> |
||||
</el-select> |
||||
</el-form-item> |
||||
<!-- <el-form-item label="厂牌型号" prop="brandModel"> |
||||
<el-input |
||||
v-model="queryParams.brandModel" |
||||
placeholder="请输入厂牌型号" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="产地" prop="origin"> |
||||
<el-input |
||||
v-model="queryParams.origin" |
||||
placeholder="请输入产地" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="生产企业名称" prop="manufacturerName"> |
||||
<el-input |
||||
v-model="queryParams.manufacturerName" |
||||
placeholder="请输入生产企业名称" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="税收分类编码" prop="taxCategoryCode"> |
||||
<el-input |
||||
v-model="queryParams.taxCategoryCode" |
||||
placeholder="请输入税收分类编码" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="税收分类编码ID" prop="taxCategoryCodeId"> |
||||
<el-input |
||||
v-model="queryParams.taxCategoryCodeId" |
||||
placeholder="请输入税收分类编码ID" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="税收分类编码简称" prop="taxCategoryAbbreviation"> |
||||
<el-input |
||||
v-model="queryParams.taxCategoryAbbreviation" |
||||
placeholder="请输入税收分类编码简称" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item> |
||||
<el-form-item label="是否享受优惠政策" prop="isQualifiedForDiscount"> |
||||
<el-input |
||||
v-model="queryParams.isQualifiedForDiscount" |
||||
placeholder="请输入是否享受优惠政策" |
||||
clearable |
||||
size="small" |
||||
@keyup.enter.native="handleQuery" |
||||
/> |
||||
</el-form-item>--> |
||||
<el-form-item> |
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
|
||||
<el-row :gutter="10" class="mb8"> |
||||
<el-col :span="1.5"> |
||||
<el-button |
||||
type="primary" |
||||
plain |
||||
icon="el-icon-plus" |
||||
size="mini" |
||||
@click="handleAdd" |
||||
v-hasPermi="['platform:vehiclecode:add']" |
||||
>新增</el-button> |
||||
</el-col> |
||||
<el-col :span="1.5"> |
||||
<el-button |
||||
type="success" |
||||
plain |
||||
icon="el-icon-edit" |
||||
size="mini" |
||||
:disabled="single" |
||||
@click="handleUpdate" |
||||
v-hasPermi="['platform:vehiclecode:edit']" |
||||
>修改</el-button> |
||||
</el-col> |
||||
<el-col :span="1.5"> |
||||
<el-button |
||||
type="danger" |
||||
plain |
||||
icon="el-icon-delete" |
||||
size="mini" |
||||
:disabled="multiple" |
||||
@click="handleDelete" |
||||
v-hasPermi="['platform:vehiclecode:remove']" |
||||
>删除</el-button> |
||||
</el-col> |
||||
<el-col :span="1.5"> |
||||
<el-button |
||||
type="warning" |
||||
plain |
||||
icon="el-icon-download" |
||||
size="mini" |
||||
@click="handleExport" |
||||
v-hasPermi="['platform:vehiclecode:export']" |
||||
>导出</el-button> |
||||
</el-col> |
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
||||
</el-row> |
||||
|
||||
<el-table v-loading="loading" :data="vehiclecodeList" @selection-change="handleSelectionChange"> |
||||
<el-table-column type="selection" width="55" align="center" /> |
||||
<!-- <el-table-column label="ID" align="center" prop="id" />--> |
||||
<el-table-column label="车辆编码" align="center" prop="vehicleCode" /> |
||||
<el-table-column label="车辆类型" align="center" prop="vehicleType"> |
||||
<template v-slot:="scope"> |
||||
<dict-tag :options="dict.type.vehicle_type" :value="scope.row.vehicleType"/> |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column label="厂牌型号" align="center" prop="brandModel" /> |
||||
<el-table-column label="产地" align="center" prop="origin" /> |
||||
<el-table-column label="生产企业名称" align="center" prop="manufacturerName" /> |
||||
<el-table-column label="税收分类编码" align="center" prop="taxCategoryCode" /> |
||||
<!-- <el-table-column label="税收分类编码ID" align="center" prop="taxCategoryCodeId" />--> |
||||
<el-table-column label="税收分类编码简称" align="center" prop="taxCategoryAbbreviation" /> |
||||
<el-table-column label="是否享受优惠政策" align="center" prop="isQualifiedForDiscount" /> |
||||
<el-table-column label="优惠政策类型" align="center" prop="discountPolicyType" /> |
||||
<el-table-column label="状态" align="center" prop="status" /> |
||||
<el-table-column label="备注" align="center" prop="remark" /> |
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
<template slot-scope="scope"> |
||||
<el-button |
||||
size="mini" |
||||
type="text" |
||||
icon="el-icon-edit" |
||||
@click="handleUpdate(scope.row)" |
||||
v-hasPermi="['platform:vehiclecode:edit']" |
||||
>修改</el-button> |
||||
<el-button |
||||
size="mini" |
||||
type="text" |
||||
icon="el-icon-delete" |
||||
@click="handleDelete(scope.row)" |
||||
v-hasPermi="['platform:vehiclecode:remove']" |
||||
>删除</el-button> |
||||
</template> |
||||
</el-table-column> |
||||
</el-table> |
||||
|
||||
<pagination |
||||
v-show="total>0" |
||||
:total="total" |
||||
:page.sync="queryParams.pageNum" |
||||
:limit.sync="queryParams.pageSize" |
||||
@pagination="getList" |
||||
/> |
||||
|
||||
<!-- 添加或修改车辆编码对话框 --> |
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> |
||||
<el-form-item label="车辆编码" prop="vehicleCode"> |
||||
<el-input v-model="form.vehicleCode" placeholder="请输入车辆编码" /> |
||||
</el-form-item> |
||||
<el-form-item label="车辆类型" prop="vehicleType"> |
||||
<!-- <el-input v-model="form.vehicleType" placeholder="请输入车辆类型" />--> |
||||
<el-select |
||||
v-model="form.vehicleType" |
||||
placeholder="请选择车辆类型" |
||||
clearable |
||||
size="small" |
||||
> |
||||
<el-option v-for="dict in dict.type.vehicle_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item label="厂牌型号" prop="brandModel"> |
||||
<el-input v-model="form.brandModel" placeholder="请输入厂牌型号" /> |
||||
</el-form-item> |
||||
<el-form-item label="产地" prop="origin"> |
||||
<el-input v-model="form.origin" placeholder="请输入产地" /> |
||||
</el-form-item> |
||||
<el-form-item label="生产企业名称" prop="manufacturerName"> |
||||
<el-input v-model="form.manufacturerName" placeholder="请输入生产企业名称" /> |
||||
</el-form-item> |
||||
<el-form-item label="税收分类编码" prop="taxCategoryCode"> |
||||
<el-input v-model="form.taxCategoryCode" placeholder="请输入税收分类编码" /> |
||||
</el-form-item> |
||||
<!-- <el-form-item label="税收分类编码ID" prop="taxCategoryCodeId"> |
||||
<el-input v-model="form.taxCategoryCodeId" placeholder="请输入税收分类编码ID" /> |
||||
</el-form-item>--> |
||||
<el-form-item label="税收分类编码简称" prop="taxCategoryAbbreviation"> |
||||
<el-input v-model="form.taxCategoryAbbreviation" placeholder="请输入税收分类编码简称" /> |
||||
</el-form-item> |
||||
<el-form-item label="是否享受优惠政策" prop="isQualifiedForDiscount"> |
||||
<el-input v-model="form.isQualifiedForDiscount" placeholder="请输入是否享受优惠政策" /> |
||||
</el-form-item> |
||||
<el-form-item label="备注" prop="remark"> |
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" /> |
||||
</el-form-item> |
||||
</el-form> |
||||
<div slot="footer" class="dialog-footer"> |
||||
<el-button type="primary" @click="submitForm">确 定</el-button> |
||||
<el-button @click="cancel">取 消</el-button> |
||||
</div> |
||||
</el-dialog> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { listVehiclecode, getVehiclecode, delVehiclecode, addVehiclecode, updateVehiclecode } from "@/api/platform/vehiclecode"; |
||||
|
||||
export default { |
||||
name: "Vehiclecode", |
||||
dicts: ['vehicle_type'], |
||||
data() { |
||||
return { |
||||
// 遮罩层 |
||||
loading: true, |
||||
// 选中数组 |
||||
ids: [], |
||||
// 非单个禁用 |
||||
single: true, |
||||
// 非多个禁用 |
||||
multiple: true, |
||||
// 显示搜索条件 |
||||
showSearch: true, |
||||
// 总条数 |
||||
total: 0, |
||||
// 车辆编码表格数据 |
||||
vehiclecodeList: [], |
||||
// 弹出层标题 |
||||
title: "", |
||||
// 是否显示弹出层 |
||||
open: false, |
||||
// 车辆类型字典 |
||||
vehicleTypeOptions: [], |
||||
// 查询参数 |
||||
queryParams: { |
||||
pageNum: 1, |
||||
pageSize: 10, |
||||
vehicleCode: null, |
||||
vehicleType: null, |
||||
brandModel: null, |
||||
origin: null, |
||||
manufacturerName: null, |
||||
taxCategoryCode: null, |
||||
taxCategoryCodeId: null, |
||||
taxCategoryAbbreviation: null, |
||||
isQualifiedForDiscount: null, |
||||
discountPolicyType: null, |
||||
status: null, |
||||
}, |
||||
// 表单参数 |
||||
form: {}, |
||||
// 表单校验 |
||||
rules: { |
||||
vehicleCode: [ |
||||
{ required: true, message: "车辆编码不能为空", trigger: "blur" } |
||||
], |
||||
} |
||||
}; |
||||
}, |
||||
created() { |
||||
this.getList(); |
||||
|
||||
}, |
||||
methods: { |
||||
/** 查询车辆编码列表 */ |
||||
getList() { |
||||
this.loading = true; |
||||
listVehiclecode(this.queryParams).then(response => { |
||||
this.vehiclecodeList = response.rows; |
||||
this.total = response.total; |
||||
this.loading = false; |
||||
}); |
||||
}, |
||||
// 取消按钮 |
||||
cancel() { |
||||
this.open = false; |
||||
this.reset(); |
||||
}, |
||||
// 表单重置 |
||||
reset() { |
||||
this.form = { |
||||
id: null, |
||||
vehicleCode: null, |
||||
vehicleType: null, |
||||
brandModel: null, |
||||
origin: null, |
||||
manufacturerName: null, |
||||
taxCategoryCode: null, |
||||
taxCategoryCodeId: null, |
||||
taxCategoryAbbreviation: null, |
||||
isQualifiedForDiscount: null, |
||||
discountPolicyType: null, |
||||
status: "0", |
||||
createBy: null, |
||||
createTime: null, |
||||
updateBy: null, |
||||
updateTime: null, |
||||
remark: null |
||||
}; |
||||
this.resetForm("form"); |
||||
}, |
||||
/** 搜索按钮操作 */ |
||||
handleQuery() { |
||||
this.queryParams.pageNum = 1; |
||||
this.getList(); |
||||
}, |
||||
/** 重置按钮操作 */ |
||||
resetQuery() { |
||||
this.resetForm("queryForm"); |
||||
this.handleQuery(); |
||||
}, |
||||
// 多选框选中数据 |
||||
handleSelectionChange(selection) { |
||||
this.ids = selection.map(item => item.id) |
||||
this.single = selection.length!==1 |
||||
this.multiple = !selection.length |
||||
}, |
||||
/** 新增按钮操作 */ |
||||
handleAdd() { |
||||
this.reset(); |
||||
this.open = true; |
||||
this.title = "添加车辆编码"; |
||||
}, |
||||
/** 修改按钮操作 */ |
||||
handleUpdate(row) { |
||||
this.reset(); |
||||
const id = row.id || this.ids |
||||
getVehiclecode(id).then(response => { |
||||
this.form = response.data; |
||||
this.open = true; |
||||
this.title = "修改车辆编码"; |
||||
}); |
||||
}, |
||||
/** 提交按钮 */ |
||||
submitForm() { |
||||
this.$refs["form"].validate(valid => { |
||||
if (valid) { |
||||
if (this.form.id != null) { |
||||
updateVehiclecode(this.form).then(response => { |
||||
this.$modal.msgSuccess("修改成功"); |
||||
this.open = false; |
||||
this.getList(); |
||||
}); |
||||
} else { |
||||
addVehiclecode(this.form).then(response => { |
||||
this.$modal.msgSuccess("新增成功"); |
||||
this.open = false; |
||||
this.getList(); |
||||
}); |
||||
} |
||||
} |
||||
}); |
||||
}, |
||||
/** 删除按钮操作 */ |
||||
handleDelete(row) { |
||||
const ids = row.id || this.ids; |
||||
this.$modal.confirm('是否确认删除车辆编码编号为"' + ids + '"的数据项?').then(function() { |
||||
return delVehiclecode(ids); |
||||
}).then(() => { |
||||
this.getList(); |
||||
this.$modal.msgSuccess("删除成功"); |
||||
}).catch(() => {}); |
||||
}, |
||||
/** 导出按钮操作 */ |
||||
handleExport() { |
||||
this.download('platform/vehiclecode/export', { |
||||
...this.queryParams |
||||
}, `vehiclecode_${new Date().getTime()}.xlsx`) |
||||
} |
||||
} |
||||
}; |
||||
</script> |
Loading…
Reference in new issue