From 3e2eca569a3cc585e0ac16bf0dba814683b58c51 Mon Sep 17 00:00:00 2001 From: yinq Date: Thu, 27 Feb 2025 19:05:11 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=B7=BB=E5=8A=A0=E7=A4=BA=E6=96=B9?= =?UTF-8?q?=E4=B9=A6=E7=BB=B4=E6=8A=A4=E3=80=81=E6=96=87=E4=BB=B6=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E4=B8=8B=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProdSamplePrescriptionController.java | 117 ++++++++++++++ .../mes/domain/ProdSamplePrescription.java | 99 ++++++++++++ .../domain/bo/ProdSamplePrescriptionBo.java | 77 +++++++++ .../domain/vo/ProdSamplePrescriptionVo.java | 128 +++++++++++++++ .../mapper/ProdSamplePrescriptionMapper.java | 15 ++ .../IProdSamplePrescriptionService.java | 68 ++++++++ .../ProdSamplePrescriptionServiceImpl.java | 150 ++++++++++++++++++ .../mes/ProdSamplePrescriptionMapper.xml | 7 + 8 files changed, 661 insertions(+) create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/controller/ProdSamplePrescriptionController.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/ProdSamplePrescription.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/bo/ProdSamplePrescriptionBo.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/vo/ProdSamplePrescriptionVo.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/mapper/ProdSamplePrescriptionMapper.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/IProdSamplePrescriptionService.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/impl/ProdSamplePrescriptionServiceImpl.java create mode 100644 ruoyi-modules/hwmom-mes/src/main/resources/mapper/mes/ProdSamplePrescriptionMapper.xml diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/controller/ProdSamplePrescriptionController.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/controller/ProdSamplePrescriptionController.java new file mode 100644 index 00000000..abb61851 --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/controller/ProdSamplePrescriptionController.java @@ -0,0 +1,117 @@ +package org.dromara.mes.controller; + +import java.util.List; + +import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.*; +import cn.dev33.satoken.annotation.SaCheckPermission; +import org.springframework.web.bind.annotation.*; +import org.springframework.validation.annotation.Validated; +import org.dromara.common.idempotent.annotation.RepeatSubmit; +import org.dromara.common.log.annotation.Log; +import org.dromara.common.web.core.BaseController; +import org.dromara.common.mybatis.core.page.PageQuery; +import org.dromara.common.core.domain.R; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import org.dromara.common.log.enums.BusinessType; +import org.dromara.common.excel.utils.ExcelUtil; +import org.dromara.mes.domain.vo.ProdSamplePrescriptionVo; +import org.dromara.mes.domain.bo.ProdSamplePrescriptionBo; +import org.dromara.mes.service.IProdSamplePrescriptionService; +import org.dromara.common.mybatis.core.page.TableDataInfo; + +/** + * 示方书维护 + * 前端访问路由地址为:/mes/samplePrescription + * + * @author Yinq + * @date 2025-02-27 + */ +@Validated +@RequiredArgsConstructor +@RestController +@RequestMapping("/samplePrescription") +public class ProdSamplePrescriptionController extends BaseController { + + private final IProdSamplePrescriptionService prodSamplePrescriptionService; + + /** + * 查询示方书维护列表 + */ + @SaCheckPermission("mes:samplePrescription:list") + @GetMapping("/list") + public TableDataInfo list(ProdSamplePrescriptionBo bo, PageQuery pageQuery) { + return prodSamplePrescriptionService.queryPageList(bo, pageQuery); + } + + /** + * 导出示方书维护列表 + */ + @SaCheckPermission("mes:samplePrescription:export") + @Log(title = "示方书维护", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(ProdSamplePrescriptionBo bo, HttpServletResponse response) { + List list = prodSamplePrescriptionService.queryList(bo); + ExcelUtil.exportExcel(list, "示方书维护", ProdSamplePrescriptionVo.class, response); + } + + /** + * 获取示方书维护详细信息 + * + * @param sampleId 主键 + */ + @SaCheckPermission("mes:samplePrescription:query") + @GetMapping("/{sampleId}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long sampleId) { + return R.ok(prodSamplePrescriptionService.queryById(sampleId)); + } + + /** + * 新增示方书维护 + */ + @SaCheckPermission("mes:samplePrescription:add") + @Log(title = "示方书维护", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody ProdSamplePrescriptionBo bo) { + return toAjax(prodSamplePrescriptionService.insertByBo(bo)); + } + + /** + * 修改示方书维护 + */ + @SaCheckPermission("mes:samplePrescription:edit") + @Log(title = "示方书维护", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody ProdSamplePrescriptionBo bo) { + return toAjax(prodSamplePrescriptionService.updateByBo(bo)); + } + + /** + * 删除示方书维护 + * + * @param sampleIds 主键串 + */ + @SaCheckPermission("mes:samplePrescription:remove") + @Log(title = "示方书维护", businessType = BusinessType.DELETE) + @DeleteMapping("/{sampleIds}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] sampleIds) { + return toAjax(prodSamplePrescriptionService.deleteWithValidByIds(List.of(sampleIds), true)); + } + + + /** + * 下拉框查询示方书维护列表 + */ + + @GetMapping("/getProdSamplePrescriptionList") + public R> getProdSamplePrescriptionList(ProdSamplePrescriptionBo bo) { + List list = prodSamplePrescriptionService.queryList(bo); + return R.ok(list); + } +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/ProdSamplePrescription.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/ProdSamplePrescription.java new file mode 100644 index 00000000..af7a876d --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/ProdSamplePrescription.java @@ -0,0 +1,99 @@ +package org.dromara.mes.domain; + +import org.dromara.common.tenant.core.TenantEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.io.Serial; + +/** + * 示方书维护对象 prod_sample_prescription + * + * @author Yinq + * @date 2025-02-27 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@TableName("prod_sample_prescription") +public class ProdSamplePrescription extends TenantEntity { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 主键标识 + */ + @TableId(value = "sample_id", type = IdType.AUTO) + private Long sampleId; + + /** + * 工序ID + */ + private Long processId; + + /** + * 物料ID + */ + private Long materialId; + + /** + * 物料BOMID + */ + private Long materialBomId; + + /** + * 工艺ID + */ + private Long technologyId; + + /** + * 对象存储ID + */ + private Long oosId; + + /** + * 文件名 + */ + private String originalName; + + /** + * 文件地址 + */ + private String fileUrl; + + /** + * 激活标识(1是 0否) + */ + private String activeFlag; + + /** + * 备注 + */ + private String remark; + + /** + * 工序名称 + */ + @TableField(exist = false) + private String processName; + + /** + * 物料名称 + */ + @TableField(exist = false) + private String materialName; + + /** + * 物料BOM名称 + */ + @TableField(exist = false) + private String materialBomName; + + /** + * 工艺名称 + */ + @TableField(exist = false) + private String technologyName; + +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/bo/ProdSamplePrescriptionBo.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/bo/ProdSamplePrescriptionBo.java new file mode 100644 index 00000000..bb306df1 --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/bo/ProdSamplePrescriptionBo.java @@ -0,0 +1,77 @@ +package org.dromara.mes.domain.bo; + +import org.dromara.mes.domain.ProdSamplePrescription; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; + +/** + * 示方书维护业务对象 prod_sample_prescription + * + * @author Yinq + * @date 2025-02-27 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = ProdSamplePrescription.class, reverseConvertGenerate = false) +public class ProdSamplePrescriptionBo extends BaseEntity { + + /** + * 主键标识 + */ + private Long sampleId; + + /** + * 工序ID + */ + @NotNull(message = "工序ID不能为空", groups = {AddGroup.class, EditGroup.class}) + private Long processId; + + /** + * 物料ID + */ + @NotNull(message = "物料ID不能为空", groups = {AddGroup.class, EditGroup.class}) + private Long materialId; + + /** + * 物料BOMID + */ + private Long materialBomId; + + /** + * 工艺ID + */ + private Long technologyId; + + /** + * 对象存储ID + */ + private Long oosId; + + /** + * 文件名 + */ + private String originalName; + + /** + * 文件地址 + */ + private String fileUrl; + + /** + * 激活标识(1是 0否) + */ + @NotBlank(message = "激活标识(1是 0否)不能为空", groups = {AddGroup.class, EditGroup.class}) + private String activeFlag; + + /** + * 备注 + */ + private String remark; + + +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/vo/ProdSamplePrescriptionVo.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/vo/ProdSamplePrescriptionVo.java new file mode 100644 index 00000000..4a64f8b5 --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/domain/vo/ProdSamplePrescriptionVo.java @@ -0,0 +1,128 @@ +package org.dromara.mes.domain.vo; + +import com.baomidou.mybatisplus.annotation.TableField; +import org.dromara.mes.domain.ProdSamplePrescription; +import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; +import com.alibaba.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 示方书维护视图对象 prod_sample_prescription + * + * @author Yinq + * @date 2025-02-27 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = ProdSamplePrescription.class) +public class ProdSamplePrescriptionVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 主键标识 + */ + @ExcelProperty(value = "主键标识") + private Long sampleId; + + /** + * 工序ID + */ + @ExcelProperty(value = "工序ID") + private Long processId; + + /** + * 物料ID + */ + @ExcelProperty(value = "物料ID") + private Long materialId; + + /** + * 物料BOMID + */ + @ExcelProperty(value = "物料BOMID") + private Long materialBomId; + + /** + * 工艺ID + */ + @ExcelProperty(value = "工艺ID") + private Long technologyId; + + /** + * 对象存储ID + */ + @ExcelProperty(value = "对象存储ID") + private Long oosId; + + /** + * 文件名 + */ + @ExcelProperty(value = "文件名") + private String originalName; + + /** + * 文件地址 + */ + @ExcelProperty(value = "文件地址") + private String fileUrl; + + /** + * 激活标识(1是 0否) + */ + @ExcelProperty(value = "激活标识", converter = ExcelDictConvert.class) + @ExcelDictFormat(dictType = "active_flag") + private String activeFlag; + + /** + * 备注 + */ + @ExcelProperty(value = "备注") + private String remark; + + /** + * 创建人 + */ + @ExcelProperty(value = "创建人") + private Long createBy; + + /** + * 创建时间 + */ + @ExcelProperty(value = "创建时间") + private Date createTime; + + /** + * 工序名称 + */ + @ExcelProperty(value = "工序名称") + private String processName; + + /** + * 物料名称 + */ + @ExcelProperty(value = "物料名称") + private String materialName; + + /** + * 物料BOM名称 + */ + @ExcelProperty(value = "物料BOM名称") + private String materialBomName; + + /** + * 工艺名称 + */ + @ExcelProperty(value = "工艺名称") + private String technologyName; +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/mapper/ProdSamplePrescriptionMapper.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/mapper/ProdSamplePrescriptionMapper.java new file mode 100644 index 00000000..0748bf7c --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/mapper/ProdSamplePrescriptionMapper.java @@ -0,0 +1,15 @@ +package org.dromara.mes.mapper; + +import org.dromara.mes.domain.ProdSamplePrescription; +import org.dromara.mes.domain.vo.ProdSamplePrescriptionVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 示方书维护Mapper接口 + * + * @author Yinq + * @date 2025-02-27 + */ +public interface ProdSamplePrescriptionMapper extends BaseMapperPlus { + +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/IProdSamplePrescriptionService.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/IProdSamplePrescriptionService.java new file mode 100644 index 00000000..342c82b8 --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/IProdSamplePrescriptionService.java @@ -0,0 +1,68 @@ +package org.dromara.mes.service; + +import org.dromara.mes.domain.vo.ProdSamplePrescriptionVo; +import org.dromara.mes.domain.bo.ProdSamplePrescriptionBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 示方书维护Service接口 + * + * @author Yinq + * @date 2025-02-27 + */ +public interface IProdSamplePrescriptionService { + + /** + * 查询示方书维护 + * + * @param sampleId 主键 + * @return 示方书维护 + */ + ProdSamplePrescriptionVo queryById(Long sampleId); + + /** + * 分页查询示方书维护列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 示方书维护分页列表 + */ + TableDataInfo queryPageList(ProdSamplePrescriptionBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的示方书维护列表 + * + * @param bo 查询条件 + * @return 示方书维护列表 + */ + List queryList(ProdSamplePrescriptionBo bo); + + /** + * 新增示方书维护 + * + * @param bo 示方书维护 + * @return 是否新增成功 + */ + Boolean insertByBo(ProdSamplePrescriptionBo bo); + + /** + * 修改示方书维护 + * + * @param bo 示方书维护 + * @return 是否修改成功 + */ + Boolean updateByBo(ProdSamplePrescriptionBo bo); + + /** + * 校验并批量删除示方书维护信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/impl/ProdSamplePrescriptionServiceImpl.java b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/impl/ProdSamplePrescriptionServiceImpl.java new file mode 100644 index 00000000..164890cf --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/java/org/dromara/mes/service/impl/ProdSamplePrescriptionServiceImpl.java @@ -0,0 +1,150 @@ +package org.dromara.mes.service.impl; + +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.github.yulichang.toolkit.JoinWrappers; +import com.github.yulichang.wrapper.MPJLambdaWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import org.dromara.mes.domain.*; +import org.dromara.mes.domain.bo.ProdTechnologyInfoBo; +import org.springframework.stereotype.Service; +import org.dromara.mes.domain.bo.ProdSamplePrescriptionBo; +import org.dromara.mes.domain.vo.ProdSamplePrescriptionVo; +import org.dromara.mes.mapper.ProdSamplePrescriptionMapper; +import org.dromara.mes.service.IProdSamplePrescriptionService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 示方书维护Service业务层处理 + * + * @author Yinq + * @date 2025-02-27 + */ +@RequiredArgsConstructor +@Service +public class ProdSamplePrescriptionServiceImpl implements IProdSamplePrescriptionService { + + private final ProdSamplePrescriptionMapper baseMapper; + + /** + * 查询示方书维护 + * + * @param sampleId 主键 + * @return 示方书维护 + */ + @Override + public ProdSamplePrescriptionVo queryById(Long sampleId) { + ProdSamplePrescriptionBo bo = new ProdSamplePrescriptionBo(); + bo.setSampleId(sampleId); + MPJLambdaWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoOne(lqw); + } + + /** + * 分页查询示方书维护列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 示方书维护分页列表 + */ + @Override + public TableDataInfo queryPageList(ProdSamplePrescriptionBo bo, PageQuery pageQuery) { + MPJLambdaWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的示方书维护列表 + * + * @param bo 查询条件 + * @return 示方书维护列表 + */ + @Override + public List queryList(ProdSamplePrescriptionBo bo) { + MPJLambdaWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private MPJLambdaWrapper buildQueryWrapper(ProdSamplePrescriptionBo bo) { + Map params = bo.getParams(); + MPJLambdaWrapper lqw = JoinWrappers.lambda(ProdSamplePrescription.class) + .selectAll(ProdSamplePrescription.class) + .select(ProdBaseProcessInfo::getProcessName) + .select(BaseMaterialInfo::getMaterialName) + .leftJoin(ProdBaseProcessInfo.class, ProdBaseProcessInfo::getProcessId, ProdSamplePrescription::getProcessId) + .leftJoin(BaseMaterialInfo.class, BaseMaterialInfo::getMaterialId, ProdSamplePrescription::getMaterialId) + .eq(bo.getSampleId() != null, ProdSamplePrescription::getSampleId, bo.getSampleId()) + .eq(bo.getProcessId() != null, ProdSamplePrescription::getProcessId, bo.getProcessId()) + .eq(bo.getMaterialId() != null, ProdSamplePrescription::getMaterialId, bo.getMaterialId()) + .eq(bo.getMaterialBomId() != null, ProdSamplePrescription::getMaterialBomId, bo.getMaterialBomId()) + .eq(bo.getTechnologyId() != null, ProdSamplePrescription::getTechnologyId, bo.getTechnologyId()) + .eq(bo.getOosId() != null, ProdSamplePrescription::getOosId, bo.getOosId()) + .like(StringUtils.isNotBlank(bo.getOriginalName()), ProdSamplePrescription::getOriginalName, bo.getOriginalName()) + .eq(StringUtils.isNotBlank(bo.getFileUrl()), ProdSamplePrescription::getFileUrl, bo.getFileUrl()) + .eq(StringUtils.isNotBlank(bo.getActiveFlag()), ProdSamplePrescription::getActiveFlag, bo.getActiveFlag()) + .eq(bo.getCreateBy() != null, ProdSamplePrescription::getCreateBy, bo.getCreateBy()) + .eq(bo.getCreateTime() != null, ProdSamplePrescription::getCreateTime, bo.getCreateTime()) + .orderByAsc(ProdSamplePrescription::getCreateTime); + return lqw; + } + + /** + * 新增示方书维护 + * + * @param bo 示方书维护 + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(ProdSamplePrescriptionBo bo) { + ProdSamplePrescription add = MapstructUtils.convert(bo, ProdSamplePrescription.class); + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setSampleId(add.getSampleId()); + } + return flag; + } + + /** + * 修改示方书维护 + * + * @param bo 示方书维护 + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(ProdSamplePrescriptionBo bo) { + ProdSamplePrescription update = MapstructUtils.convert(bo, ProdSamplePrescription.class); + validEntityBeforeSave(update); + return baseMapper.updateById(update) > 0; + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(ProdSamplePrescription entity) { + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除示方书维护信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if (isValid) { + //TODO 做一些业务上的校验,判断是否需要校验 + } + return baseMapper.deleteByIds(ids) > 0; + } +} diff --git a/ruoyi-modules/hwmom-mes/src/main/resources/mapper/mes/ProdSamplePrescriptionMapper.xml b/ruoyi-modules/hwmom-mes/src/main/resources/mapper/mes/ProdSamplePrescriptionMapper.xml new file mode 100644 index 00000000..b5d1bd02 --- /dev/null +++ b/ruoyi-modules/hwmom-mes/src/main/resources/mapper/mes/ProdSamplePrescriptionMapper.xml @@ -0,0 +1,7 @@ + + + + +