From 6cae33e1d650009df5aadfe9f26c9b87ab79765e Mon Sep 17 00:00:00 2001 From: dy <1197793912@qq.com> Date: Thu, 25 Mar 2021 17:14:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=BD=E5=A5=96=E8=AE=B0=E5=BD=95=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E7=BC=96=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/DrawRecordController.java | 126 ++++++++ .../sinosoft/activity/domain/DrawRecord.java | 281 ++++++++++++++++++ .../activity/mapper/DrawRecordMapper.java | 61 ++++ .../activity/service/IDrawRecordService.java | 61 ++++ .../service/impl/DrawRecordServiceImpl.java | 94 ++++++ .../mapper/activity/DrawRecordMapper.xml | 139 +++++++++ .../templates/activity/record/add.html | 168 +++++++++++ .../templates/activity/record/edit.html | 169 +++++++++++ .../templates/activity/record/record.html | 213 +++++++++++++ 9 files changed, 1312 insertions(+) create mode 100644 sino-activity/src/main/java/com/sinosoft/activity/controller/DrawRecordController.java create mode 100644 sino-activity/src/main/java/com/sinosoft/activity/domain/DrawRecord.java create mode 100644 sino-activity/src/main/java/com/sinosoft/activity/mapper/DrawRecordMapper.java create mode 100644 sino-activity/src/main/java/com/sinosoft/activity/service/IDrawRecordService.java create mode 100644 sino-activity/src/main/java/com/sinosoft/activity/service/impl/DrawRecordServiceImpl.java create mode 100644 sino-activity/src/main/resources/mapper/activity/DrawRecordMapper.xml create mode 100644 sino-activity/src/main/resources/templates/activity/record/add.html create mode 100644 sino-activity/src/main/resources/templates/activity/record/edit.html create mode 100644 sino-activity/src/main/resources/templates/activity/record/record.html diff --git a/sino-activity/src/main/java/com/sinosoft/activity/controller/DrawRecordController.java b/sino-activity/src/main/java/com/sinosoft/activity/controller/DrawRecordController.java new file mode 100644 index 000000000..3f3e2aebd --- /dev/null +++ b/sino-activity/src/main/java/com/sinosoft/activity/controller/DrawRecordController.java @@ -0,0 +1,126 @@ +package com.sinosoft.activity.controller; + +import java.util.List; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.enums.BusinessType; +import com.sinosoft.activity.domain.DrawRecord; +import com.sinosoft.activity.service.IDrawRecordService; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 抽奖记录信息Controller + * + * @author ruoyi + * @date 2021-03-25 + */ +@Controller +@RequestMapping("/activity/record") +public class DrawRecordController extends BaseController +{ + private String prefix = "activity/record"; + + @Autowired + private IDrawRecordService drawRecordService; + + @RequiresPermissions("activity:record:view") + @GetMapping() + public String record() + { + return prefix + "/record"; + } + + /** + * 查询抽奖记录信息列表 + */ + @RequiresPermissions("activity:record:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(DrawRecord drawRecord) + { + startPage(); + List list = drawRecordService.selectDrawRecordList(drawRecord); + return getDataTable(list); + } + + /** + * 导出抽奖记录信息列表 + */ + @RequiresPermissions("activity:record:export") + @Log(title = "抽奖记录信息", businessType = BusinessType.EXPORT) + @PostMapping("/export") + @ResponseBody + public AjaxResult export(DrawRecord drawRecord) + { + List list = drawRecordService.selectDrawRecordList(drawRecord); + ExcelUtil util = new ExcelUtil(DrawRecord.class); + return util.exportExcel(list, "record"); + } + + /** + * 新增抽奖记录信息 + */ + @GetMapping("/add") + public String add() + { + return prefix + "/add"; + } + + /** + * 新增保存抽奖记录信息 + */ + @RequiresPermissions("activity:record:add") + @Log(title = "抽奖记录信息", businessType = BusinessType.INSERT) + @PostMapping("/add") + @ResponseBody + public AjaxResult addSave(DrawRecord drawRecord) + { + return toAjax(drawRecordService.insertDrawRecord(drawRecord)); + } + + /** + * 修改抽奖记录信息 + */ + @GetMapping("/edit/{DRAWRECORDID}") + public String edit(@PathVariable("DRAWRECORDID") String DRAWRECORDID, ModelMap mmap) + { + DrawRecord drawRecord = drawRecordService.selectDrawRecordById(DRAWRECORDID); + mmap.put("drawRecord", drawRecord); + return prefix + "/edit"; + } + + /** + * 修改保存抽奖记录信息 + */ + @RequiresPermissions("activity:record:edit") + @Log(title = "抽奖记录信息", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(DrawRecord drawRecord) + { + return toAjax(drawRecordService.updateDrawRecord(drawRecord)); + } + + /** + * 删除抽奖记录信息 + */ + @RequiresPermissions("activity:record:remove") + @Log(title = "抽奖记录信息", businessType = BusinessType.DELETE) + @PostMapping( "/remove") + @ResponseBody + public AjaxResult remove(String ids) + { + return toAjax(drawRecordService.deleteDrawRecordByIds(ids)); + } +} diff --git a/sino-activity/src/main/java/com/sinosoft/activity/domain/DrawRecord.java b/sino-activity/src/main/java/com/sinosoft/activity/domain/DrawRecord.java new file mode 100644 index 000000000..26092e6fe --- /dev/null +++ b/sino-activity/src/main/java/com/sinosoft/activity/domain/DrawRecord.java @@ -0,0 +1,281 @@ +package com.sinosoft.activity.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 抽奖记录信息对象 draw_record + * + * @author ruoyi + * @date 2021-03-25 + */ +public class DrawRecord extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 主键 */ + private String DRAWRECORDID; + + /** 抽奖流水 */ + @Excel(name = "抽奖流水") + private String DRAWTRANSEQNO; + + /** 抽奖活动代码 */ + @Excel(name = "抽奖活动代码") + private String DRAWCODE; + + /** 用户标识 */ + @Excel(name = "用户标识") + private String USERID; + + /** 抽奖时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "抽奖时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date DRAWTIME; + + /** 抽奖结果 */ + @Excel(name = "抽奖结果") + private String DRAWRESULT; + + /** 奖品代码 */ + @Excel(name = "奖品代码") + private String PRIZECODE; + + /** 奖品类型 */ + @Excel(name = "奖品类型") + private String PRIZETYPE; + + /** 账务日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "账务日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date CHECKINGDATE; + + /** 创建时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date CREATETIMESTAMP; + + /** 最后修改时间 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "最后修改时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date LASTUPDATETIMESTAMP; + + /** 渠道 */ + @Excel(name = "渠道") + private String CHANNEL; + + /** 用户名 */ + @Excel(name = "用户名") + private String USERNAME; + + /** 奖品等级 */ + @Excel(name = "奖品等级") + private String PRIZELEVEL; + + /** 奖品项目编码 */ + @Excel(name = "奖品项目编码") + private String PROJECTCODE; + + /** 请求来源 */ + @Excel(name = "请求来源") + private String SOURCE; + + /** 手机号 */ + @Excel(name = "手机号") + private String PHONE; + + /** 扩展域 */ + @Excel(name = "扩展域") + private String EXTAREA; + + public void setDRAWRECORDID(String DRAWRECORDID) + { + this.DRAWRECORDID = DRAWRECORDID; + } + + public String getDRAWRECORDID() + { + return DRAWRECORDID; + } + public void setDRAWTRANSEQNO(String DRAWTRANSEQNO) + { + this.DRAWTRANSEQNO = DRAWTRANSEQNO; + } + + public String getDRAWTRANSEQNO() + { + return DRAWTRANSEQNO; + } + public void setDRAWCODE(String DRAWCODE) + { + this.DRAWCODE = DRAWCODE; + } + + public String getDRAWCODE() + { + return DRAWCODE; + } + public void setUSERID(String USERID) + { + this.USERID = USERID; + } + + public String getUSERID() + { + return USERID; + } + public void setDRAWTIME(Date DRAWTIME) + { + this.DRAWTIME = DRAWTIME; + } + + public Date getDRAWTIME() + { + return DRAWTIME; + } + public void setDRAWRESULT(String DRAWRESULT) + { + this.DRAWRESULT = DRAWRESULT; + } + + public String getDRAWRESULT() + { + return DRAWRESULT; + } + public void setPRIZECODE(String PRIZECODE) + { + this.PRIZECODE = PRIZECODE; + } + + public String getPRIZECODE() + { + return PRIZECODE; + } + public void setPRIZETYPE(String PRIZETYPE) + { + this.PRIZETYPE = PRIZETYPE; + } + + public String getPRIZETYPE() + { + return PRIZETYPE; + } + public void setCHECKINGDATE(Date CHECKINGDATE) + { + this.CHECKINGDATE = CHECKINGDATE; + } + + public Date getCHECKINGDATE() + { + return CHECKINGDATE; + } + public void setCREATETIMESTAMP(Date CREATETIMESTAMP) + { + this.CREATETIMESTAMP = CREATETIMESTAMP; + } + + public Date getCREATETIMESTAMP() + { + return CREATETIMESTAMP; + } + public void setLASTUPDATETIMESTAMP(Date LASTUPDATETIMESTAMP) + { + this.LASTUPDATETIMESTAMP = LASTUPDATETIMESTAMP; + } + + public Date getLASTUPDATETIMESTAMP() + { + return LASTUPDATETIMESTAMP; + } + public void setCHANNEL(String CHANNEL) + { + this.CHANNEL = CHANNEL; + } + + public String getCHANNEL() + { + return CHANNEL; + } + public void setUSERNAME(String USERNAME) + { + this.USERNAME = USERNAME; + } + + public String getUSERNAME() + { + return USERNAME; + } + public void setPRIZELEVEL(String PRIZELEVEL) + { + this.PRIZELEVEL = PRIZELEVEL; + } + + public String getPRIZELEVEL() + { + return PRIZELEVEL; + } + public void setPROJECTCODE(String PROJECTCODE) + { + this.PROJECTCODE = PROJECTCODE; + } + + public String getPROJECTCODE() + { + return PROJECTCODE; + } + public void setSOURCE(String SOURCE) + { + this.SOURCE = SOURCE; + } + + public String getSOURCE() + { + return SOURCE; + } + public void setPHONE(String PHONE) + { + this.PHONE = PHONE; + } + + public String getPHONE() + { + return PHONE; + } + public void setEXTAREA(String EXTAREA) + { + this.EXTAREA = EXTAREA; + } + + public String getEXTAREA() + { + return EXTAREA; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("DRAWRECORDID", getDRAWRECORDID()) + .append("DRAWTRANSEQNO", getDRAWTRANSEQNO()) + .append("DRAWCODE", getDRAWCODE()) + .append("USERID", getUSERID()) + .append("DRAWTIME", getDRAWTIME()) + .append("DRAWRESULT", getDRAWRESULT()) + .append("PRIZECODE", getPRIZECODE()) + .append("PRIZETYPE", getPRIZETYPE()) + .append("CHECKINGDATE", getCHECKINGDATE()) + .append("CREATETIMESTAMP", getCREATETIMESTAMP()) + .append("LASTUPDATETIMESTAMP", getLASTUPDATETIMESTAMP()) + .append("CHANNEL", getCHANNEL()) + .append("USERNAME", getUSERNAME()) + .append("PRIZELEVEL", getPRIZELEVEL()) + .append("PROJECTCODE", getPROJECTCODE()) + .append("SOURCE", getSOURCE()) + .append("PHONE", getPHONE()) + .append("EXTAREA", getEXTAREA()) + .toString(); + } +} diff --git a/sino-activity/src/main/java/com/sinosoft/activity/mapper/DrawRecordMapper.java b/sino-activity/src/main/java/com/sinosoft/activity/mapper/DrawRecordMapper.java new file mode 100644 index 000000000..82d578563 --- /dev/null +++ b/sino-activity/src/main/java/com/sinosoft/activity/mapper/DrawRecordMapper.java @@ -0,0 +1,61 @@ +package com.sinosoft.activity.mapper; + +import java.util.List; +import com.sinosoft.activity.domain.DrawRecord; + +/** + * 抽奖记录信息Mapper接口 + * + * @author ruoyi + * @date 2021-03-25 + */ +public interface DrawRecordMapper +{ + /** + * 查询抽奖记录信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 抽奖记录信息 + */ + public DrawRecord selectDrawRecordById(String DRAWRECORDID); + + /** + * 查询抽奖记录信息列表 + * + * @param drawRecord 抽奖记录信息 + * @return 抽奖记录信息集合 + */ + public List selectDrawRecordList(DrawRecord drawRecord); + + /** + * 新增抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + public int insertDrawRecord(DrawRecord drawRecord); + + /** + * 修改抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + public int updateDrawRecord(DrawRecord drawRecord); + + /** + * 删除抽奖记录信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 结果 + */ + public int deleteDrawRecordById(String DRAWRECORDID); + + /** + * 批量删除抽奖记录信息 + * + * @param DRAWRECORDIDs 需要删除的数据ID + * @return 结果 + */ + public int deleteDrawRecordByIds(String[] DRAWRECORDIDs); +} diff --git a/sino-activity/src/main/java/com/sinosoft/activity/service/IDrawRecordService.java b/sino-activity/src/main/java/com/sinosoft/activity/service/IDrawRecordService.java new file mode 100644 index 000000000..2a4d76546 --- /dev/null +++ b/sino-activity/src/main/java/com/sinosoft/activity/service/IDrawRecordService.java @@ -0,0 +1,61 @@ +package com.sinosoft.activity.service; + +import java.util.List; +import com.sinosoft.activity.domain.DrawRecord; + +/** + * 抽奖记录信息Service接口 + * + * @author ruoyi + * @date 2021-03-25 + */ +public interface IDrawRecordService +{ + /** + * 查询抽奖记录信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 抽奖记录信息 + */ + public DrawRecord selectDrawRecordById(String DRAWRECORDID); + + /** + * 查询抽奖记录信息列表 + * + * @param drawRecord 抽奖记录信息 + * @return 抽奖记录信息集合 + */ + public List selectDrawRecordList(DrawRecord drawRecord); + + /** + * 新增抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + public int insertDrawRecord(DrawRecord drawRecord); + + /** + * 修改抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + public int updateDrawRecord(DrawRecord drawRecord); + + /** + * 批量删除抽奖记录信息 + * + * @param ids 需要删除的数据ID + * @return 结果 + */ + public int deleteDrawRecordByIds(String ids); + + /** + * 删除抽奖记录信息信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 结果 + */ + public int deleteDrawRecordById(String DRAWRECORDID); +} diff --git a/sino-activity/src/main/java/com/sinosoft/activity/service/impl/DrawRecordServiceImpl.java b/sino-activity/src/main/java/com/sinosoft/activity/service/impl/DrawRecordServiceImpl.java new file mode 100644 index 000000000..c49334960 --- /dev/null +++ b/sino-activity/src/main/java/com/sinosoft/activity/service/impl/DrawRecordServiceImpl.java @@ -0,0 +1,94 @@ +package com.sinosoft.activity.service.impl; + +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.sinosoft.activity.mapper.DrawRecordMapper; +import com.sinosoft.activity.domain.DrawRecord; +import com.sinosoft.activity.service.IDrawRecordService; +import com.ruoyi.common.core.text.Convert; + +/** + * 抽奖记录信息Service业务层处理 + * + * @author ruoyi + * @date 2021-03-25 + */ +@Service +public class DrawRecordServiceImpl implements IDrawRecordService +{ + @Autowired + private DrawRecordMapper drawRecordMapper; + + /** + * 查询抽奖记录信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 抽奖记录信息 + */ + @Override + public DrawRecord selectDrawRecordById(String DRAWRECORDID) + { + return drawRecordMapper.selectDrawRecordById(DRAWRECORDID); + } + + /** + * 查询抽奖记录信息列表 + * + * @param drawRecord 抽奖记录信息 + * @return 抽奖记录信息 + */ + @Override + public List selectDrawRecordList(DrawRecord drawRecord) + { + return drawRecordMapper.selectDrawRecordList(drawRecord); + } + + /** + * 新增抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + @Override + public int insertDrawRecord(DrawRecord drawRecord) + { + return drawRecordMapper.insertDrawRecord(drawRecord); + } + + /** + * 修改抽奖记录信息 + * + * @param drawRecord 抽奖记录信息 + * @return 结果 + */ + @Override + public int updateDrawRecord(DrawRecord drawRecord) + { + return drawRecordMapper.updateDrawRecord(drawRecord); + } + + /** + * 删除抽奖记录信息对象 + * + * @param ids 需要删除的数据ID + * @return 结果 + */ + @Override + public int deleteDrawRecordByIds(String ids) + { + return drawRecordMapper.deleteDrawRecordByIds(Convert.toStrArray(ids)); + } + + /** + * 删除抽奖记录信息信息 + * + * @param DRAWRECORDID 抽奖记录信息ID + * @return 结果 + */ + @Override + public int deleteDrawRecordById(String DRAWRECORDID) + { + return drawRecordMapper.deleteDrawRecordById(DRAWRECORDID); + } +} diff --git a/sino-activity/src/main/resources/mapper/activity/DrawRecordMapper.xml b/sino-activity/src/main/resources/mapper/activity/DrawRecordMapper.xml new file mode 100644 index 000000000..3a204890b --- /dev/null +++ b/sino-activity/src/main/resources/mapper/activity/DrawRecordMapper.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + select DRAWRECORDID, DRAWTRANSEQNO, DRAWCODE, USERID, DRAWTIME, DRAWRESULT, PRIZECODE, PRIZETYPE, CHECKINGDATE, CREATETIMESTAMP, LASTUPDATETIMESTAMP, CHANNEL, USERNAME, PRIZELEVEL, PROJECTCODE, SOURCE, PHONE, EXTAREA from draw_record + + + + + + + + insert into draw_record + + DRAWRECORDID, + DRAWTRANSEQNO, + DRAWCODE, + USERID, + DRAWTIME, + DRAWRESULT, + PRIZECODE, + PRIZETYPE, + CHECKINGDATE, + CREATETIMESTAMP, + LASTUPDATETIMESTAMP, + CHANNEL, + USERNAME, + PRIZELEVEL, + PROJECTCODE, + SOURCE, + PHONE, + EXTAREA, + + + #{DRAWRECORDID}, + #{DRAWTRANSEQNO}, + #{DRAWCODE}, + #{USERID}, + #{DRAWTIME}, + #{DRAWRESULT}, + #{PRIZECODE}, + #{PRIZETYPE}, + #{CHECKINGDATE}, + #{CREATETIMESTAMP}, + #{LASTUPDATETIMESTAMP}, + #{CHANNEL}, + #{USERNAME}, + #{PRIZELEVEL}, + #{PROJECTCODE}, + #{SOURCE}, + #{PHONE}, + #{EXTAREA}, + + + + + update draw_record + + DRAWTRANSEQNO = #{DRAWTRANSEQNO}, + DRAWCODE = #{DRAWCODE}, + USERID = #{USERID}, + DRAWTIME = #{DRAWTIME}, + DRAWRESULT = #{DRAWRESULT}, + PRIZECODE = #{PRIZECODE}, + PRIZETYPE = #{PRIZETYPE}, + CHECKINGDATE = #{CHECKINGDATE}, + CREATETIMESTAMP = #{CREATETIMESTAMP}, + LASTUPDATETIMESTAMP = #{LASTUPDATETIMESTAMP}, + CHANNEL = #{CHANNEL}, + USERNAME = #{USERNAME}, + PRIZELEVEL = #{PRIZELEVEL}, + PROJECTCODE = #{PROJECTCODE}, + SOURCE = #{SOURCE}, + PHONE = #{PHONE}, + EXTAREA = #{EXTAREA}, + + where DRAWRECORDID = #{DRAWRECORDID} + + + + delete from draw_record where DRAWRECORDID = #{DRAWRECORDID} + + + + delete from draw_record where DRAWRECORDID in + + #{DRAWRECORDID} + + + + \ No newline at end of file diff --git a/sino-activity/src/main/resources/templates/activity/record/add.html b/sino-activity/src/main/resources/templates/activity/record/add.html new file mode 100644 index 000000000..987ea0b78 --- /dev/null +++ b/sino-activity/src/main/resources/templates/activity/record/add.html @@ -0,0 +1,168 @@ + + + + + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + 代码生成请选择字典属性 +
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/sino-activity/src/main/resources/templates/activity/record/edit.html b/sino-activity/src/main/resources/templates/activity/record/edit.html new file mode 100644 index 000000000..336407fac --- /dev/null +++ b/sino-activity/src/main/resources/templates/activity/record/edit.html @@ -0,0 +1,169 @@ + + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + 代码生成请选择字典属性 +
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/sino-activity/src/main/resources/templates/activity/record/record.html b/sino-activity/src/main/resources/templates/activity/record/record.html new file mode 100644 index 000000000..de801fa72 --- /dev/null +++ b/sino-activity/src/main/resources/templates/activity/record/record.html @@ -0,0 +1,213 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • + + + + + + + + +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file