From 3051fbc033db33c39b8129d96e54b76a8033cfab Mon Sep 17 00:00:00 2001 From: wangh <123456> Date: Thu, 28 Jul 2022 18:27:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/controller/broad/MouthController.java | 18 ++ .../controller/BaseDtNengController.java | 127 ++++++++++ .../com/ruoyi/system/domain/BaseDtNeng.java | 219 ++++++++++++++++++ .../ruoyi/system/mapper/BaseDtNengMapper.java | 63 +++++ .../system/service/IBaseDtNengService.java | 63 +++++ .../service/impl/BaseDtNengServiceImpl.java | 99 ++++++++ .../resources/createsql/base_dt_nengMenu.sql | 27 +++ .../mapper/system/BaseDtNengMapper.xml | 113 +++++++++ .../templates/system/base_dt_neng/add.html | 103 ++++++++ .../system/base_dt_neng/base_dt_neng.html | 134 +++++++++++ .../templates/system/base_dt_neng/edit.html | 104 +++++++++ 11 files changed, 1070 insertions(+) create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/controller/BaseDtNengController.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseDtNeng.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/mapper/BaseDtNengMapper.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/IBaseDtNengService.java create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/service/impl/BaseDtNengServiceImpl.java create mode 100644 ruoyi-system/src/main/resources/createsql/base_dt_nengMenu.sql create mode 100644 ruoyi-system/src/main/resources/mapper/system/BaseDtNengMapper.xml create mode 100644 ruoyi-system/src/main/resources/templates/system/base_dt_neng/add.html create mode 100644 ruoyi-system/src/main/resources/templates/system/base_dt_neng/base_dt_neng.html create mode 100644 ruoyi-system/src/main/resources/templates/system/base_dt_neng/edit.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/broad/MouthController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/broad/MouthController.java index b492974..444ed56 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/broad/MouthController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/broad/MouthController.java @@ -2,6 +2,7 @@ package com.ruoyi.web.controller.broad; import com.alibaba.fastjson.JSONArray; import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.system.domain.BaseDtNeng; import com.ruoyi.system.domain.BasePictureLocation; import com.ruoyi.system.domain.BaseQi; import com.ruoyi.system.service.*; @@ -84,4 +85,21 @@ public class MouthController { return JSONArray.toJSONString(baseQiService.selectBaseQiList1()); } + @Autowired + private IBaseDtNengService baseDtNengService; + + + /** + * 查询月看板-单台能耗列表 + */ + + @PostMapping("/selectDtNenglist") + @ResponseBody + @ApiOperation("单台能耗列表") + public String selectBaseDtNengList1() { + + return JSONArray.toJSONString(baseDtNengService.selectBaseDtNengList1()); + } + + } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/controller/BaseDtNengController.java b/ruoyi-system/src/main/java/com/ruoyi/system/controller/BaseDtNengController.java new file mode 100644 index 0000000..e65f54b --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/controller/BaseDtNengController.java @@ -0,0 +1,127 @@ +package com.ruoyi.system.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.ruoyi.system.domain.BaseDtNeng; +import com.ruoyi.system.service.IBaseDtNengService; +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 2022-07-28 + */ +@Controller +@RequestMapping("/system/base_dt_neng") +public class BaseDtNengController extends BaseController +{ + private String prefix = "system/base_dt_neng"; + + @Autowired + private IBaseDtNengService baseDtNengService; + + @RequiresPermissions("system:base_dt_neng:view") + @GetMapping() + public String base_dt_neng() + { + return prefix + "/base_dt_neng"; + } + + /** + * 查询月看板-单台能耗列表 + */ + @RequiresPermissions("system:base_dt_neng:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(BaseDtNeng baseDtNeng) + { + startPage(); + List list = baseDtNengService.selectBaseDtNengList(baseDtNeng); + return getDataTable(list); + } + + /** + * 导出月看板-单台能耗列表 + */ + @RequiresPermissions("system:base_dt_neng:export") + @Log(title = "月看板-单台能耗", businessType = BusinessType.EXPORT) + @PostMapping("/export") + @ResponseBody + public AjaxResult export(BaseDtNeng baseDtNeng) + { + List list = baseDtNengService.selectBaseDtNengList(baseDtNeng); + ExcelUtil util = new ExcelUtil(BaseDtNeng.class); + return util.exportExcel(list, "月看板-单台能耗数据"); + } + + /** + * 新增月看板-单台能耗 + */ + @GetMapping("/add") + public String add() + { + return prefix + "/add"; + } + + /** + * 新增保存月看板-单台能耗 + */ + @RequiresPermissions("system:base_dt_neng:add") + @Log(title = "月看板-单台能耗", businessType = BusinessType.INSERT) + @PostMapping("/add") + @ResponseBody + public AjaxResult addSave(BaseDtNeng baseDtNeng) + { + return toAjax(baseDtNengService.insertBaseDtNeng(baseDtNeng)); + } + + /** + * 修改月看板-单台能耗 + */ + @RequiresPermissions("system:base_dt_neng:edit") + @GetMapping("/edit/{id}") + public String edit(@PathVariable("id") Long id, ModelMap mmap) + { + BaseDtNeng baseDtNeng = baseDtNengService.selectBaseDtNengById(id); + mmap.put("baseDtNeng", baseDtNeng); + return prefix + "/edit"; + } + + /** + * 修改保存月看板-单台能耗 + */ + @RequiresPermissions("system:base_dt_neng:edit") + @Log(title = "月看板-单台能耗", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(BaseDtNeng baseDtNeng) + { + return toAjax(baseDtNengService.updateBaseDtNeng(baseDtNeng)); + } + + /** + * 删除月看板-单台能耗 + */ + @RequiresPermissions("system:base_dt_neng:remove") + @Log(title = "月看板-单台能耗", businessType = BusinessType.DELETE) + @PostMapping( "/remove") + @ResponseBody + public AjaxResult remove(String ids) + { + return toAjax(baseDtNengService.deleteBaseDtNengByIds(ids)); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseDtNeng.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseDtNeng.java new file mode 100644 index 0000000..754b7a0 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseDtNeng.java @@ -0,0 +1,219 @@ +package com.ruoyi.system.domain; + +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; + +/** + * 月看板-单台能耗对象 base_dt_neng + * + * @author ruoyi + * @date 2022-07-28 + */ +public class BaseDtNeng extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 主键 */ + private Long id; + + /** 年份 */ + @Excel(name = "年份") + private Long yearName; + + /** 1月 */ + @Excel(name = "1月") + private String month1; + + /** 2月 */ + @Excel(name = "2月") + private String month2; + + /** 3月 */ + @Excel(name = "3月") + private String month3; + + /** 4月 */ + @Excel(name = "4月") + private String month4; + + /** 5月 */ + @Excel(name = "5月") + private String month5; + + /** 6月 */ + @Excel(name = "6月") + private String month6; + + /** 7月 */ + @Excel(name = "7月") + private String month7; + + /** 8月 */ + @Excel(name = "8月") + private String month8; + + /** 9月 */ + @Excel(name = "9月") + private String month9; + + /** 10月 */ + @Excel(name = "10月") + private String month10; + + /** 11月 */ + @Excel(name = "11月") + private String month11; + + /** 12月 */ + @Excel(name = "12月") + private String month12; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setYearName(Long yearName) + { + this.yearName = yearName; + } + + public Long getYearName() + { + return yearName; + } + public void setMonth1(String month1) + { + this.month1 = month1; + } + + public String getMonth1() + { + return month1; + } + public void setMonth2(String month2) + { + this.month2 = month2; + } + + public String getMonth2() + { + return month2; + } + public void setMonth3(String month3) + { + this.month3 = month3; + } + + public String getMonth3() + { + return month3; + } + public void setMonth4(String month4) + { + this.month4 = month4; + } + + public String getMonth4() + { + return month4; + } + public void setMonth5(String month5) + { + this.month5 = month5; + } + + public String getMonth5() + { + return month5; + } + public void setMonth6(String month6) + { + this.month6 = month6; + } + + public String getMonth6() + { + return month6; + } + public void setMonth7(String month7) + { + this.month7 = month7; + } + + public String getMonth7() + { + return month7; + } + public void setMonth8(String month8) + { + this.month8 = month8; + } + + public String getMonth8() + { + return month8; + } + public void setMonth9(String month9) + { + this.month9 = month9; + } + + public String getMonth9() + { + return month9; + } + public void setMonth10(String month10) + { + this.month10 = month10; + } + + public String getMonth10() + { + return month10; + } + public void setMonth11(String month11) + { + this.month11 = month11; + } + + public String getMonth11() + { + return month11; + } + public void setMonth12(String month12) + { + this.month12 = month12; + } + + public String getMonth12() + { + return month12; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("yearName", getYearName()) + .append("month1", getMonth1()) + .append("month2", getMonth2()) + .append("month3", getMonth3()) + .append("month4", getMonth4()) + .append("month5", getMonth5()) + .append("month6", getMonth6()) + .append("month7", getMonth7()) + .append("month8", getMonth8()) + .append("month9", getMonth9()) + .append("month10", getMonth10()) + .append("month11", getMonth11()) + .append("month12", getMonth12()) + .toString(); + } +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/BaseDtNengMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/BaseDtNengMapper.java new file mode 100644 index 0000000..2946fb8 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/BaseDtNengMapper.java @@ -0,0 +1,63 @@ +package com.ruoyi.system.mapper; + +import java.util.List; +import com.ruoyi.system.domain.BaseDtNeng; + +/** + * 月看板-单台能耗Mapper接口 + * + * @author ruoyi + * @date 2022-07-28 + */ +public interface BaseDtNengMapper +{ + /** + * 查询月看板-单台能耗 + * + * @param id 月看板-单台能耗主键 + * @return 月看板-单台能耗 + */ + public BaseDtNeng selectBaseDtNengById(Long id); + + /** + * 查询月看板-单台能耗列表 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 月看板-单台能耗集合 + */ + public List selectBaseDtNengList(BaseDtNeng baseDtNeng); + + /** + * 新增月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + public int insertBaseDtNeng(BaseDtNeng baseDtNeng); + + /** + * 修改月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + public int updateBaseDtNeng(BaseDtNeng baseDtNeng); + + /** + * 删除月看板-单台能耗 + * + * @param id 月看板-单台能耗主键 + * @return 结果 + */ + public int deleteBaseDtNengById(Long id); + + /** + * 批量删除月看板-单台能耗 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteBaseDtNengByIds(String[] ids); + + List selectBaseDtNengList1(); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/IBaseDtNengService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/IBaseDtNengService.java new file mode 100644 index 0000000..f1731d6 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/IBaseDtNengService.java @@ -0,0 +1,63 @@ +package com.ruoyi.system.service; + +import java.util.List; +import com.ruoyi.system.domain.BaseDtNeng; + +/** + * 月看板-单台能耗Service接口 + * + * @author ruoyi + * @date 2022-07-28 + */ +public interface IBaseDtNengService +{ + /** + * 查询月看板-单台能耗 + * + * @param id 月看板-单台能耗主键 + * @return 月看板-单台能耗 + */ + public BaseDtNeng selectBaseDtNengById(Long id); + + /** + * 查询月看板-单台能耗列表 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 月看板-单台能耗集合 + */ + public List selectBaseDtNengList(BaseDtNeng baseDtNeng); + + /** + * 新增月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + public int insertBaseDtNeng(BaseDtNeng baseDtNeng); + + /** + * 修改月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + public int updateBaseDtNeng(BaseDtNeng baseDtNeng); + + /** + * 批量删除月看板-单台能耗 + * + * @param ids 需要删除的月看板-单台能耗主键集合 + * @return 结果 + */ + public int deleteBaseDtNengByIds(String ids); + + /** + * 删除月看板-单台能耗信息 + * + * @param id 月看板-单台能耗主键 + * @return 结果 + */ + public int deleteBaseDtNengById(Long id); + + List selectBaseDtNengList1(); +} diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/BaseDtNengServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/BaseDtNengServiceImpl.java new file mode 100644 index 0000000..11440dc --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/BaseDtNengServiceImpl.java @@ -0,0 +1,99 @@ +package com.ruoyi.system.service.impl; + +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.system.mapper.BaseDtNengMapper; +import com.ruoyi.system.domain.BaseDtNeng; +import com.ruoyi.system.service.IBaseDtNengService; +import com.ruoyi.common.core.text.Convert; + +/** + * 月看板-单台能耗Service业务层处理 + * + * @author ruoyi + * @date 2022-07-28 + */ +@Service +public class BaseDtNengServiceImpl implements IBaseDtNengService +{ + @Autowired + private BaseDtNengMapper baseDtNengMapper; + + /** + * 查询月看板-单台能耗 + * + * @param id 月看板-单台能耗主键 + * @return 月看板-单台能耗 + */ + @Override + public BaseDtNeng selectBaseDtNengById(Long id) + { + return baseDtNengMapper.selectBaseDtNengById(id); + } + + /** + * 查询月看板-单台能耗列表 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 月看板-单台能耗 + */ + @Override + public List selectBaseDtNengList(BaseDtNeng baseDtNeng) + { + return baseDtNengMapper.selectBaseDtNengList(baseDtNeng); + } + + /** + * 新增月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + @Override + public int insertBaseDtNeng(BaseDtNeng baseDtNeng) + { + return baseDtNengMapper.insertBaseDtNeng(baseDtNeng); + } + + /** + * 修改月看板-单台能耗 + * + * @param baseDtNeng 月看板-单台能耗 + * @return 结果 + */ + @Override + public int updateBaseDtNeng(BaseDtNeng baseDtNeng) + { + return baseDtNengMapper.updateBaseDtNeng(baseDtNeng); + } + + /** + * 批量删除月看板-单台能耗 + * + * @param ids 需要删除的月看板-单台能耗主键 + * @return 结果 + */ + @Override + public int deleteBaseDtNengByIds(String ids) + { + return baseDtNengMapper.deleteBaseDtNengByIds(Convert.toStrArray(ids)); + } + + /** + * 删除月看板-单台能耗信息 + * + * @param id 月看板-单台能耗主键 + * @return 结果 + */ + @Override + public int deleteBaseDtNengById(Long id) + { + return baseDtNengMapper.deleteBaseDtNengById(id); + } + + @Override + public List selectBaseDtNengList1() { + return baseDtNengMapper.selectBaseDtNengList1(); + } +} diff --git a/ruoyi-system/src/main/resources/createsql/base_dt_nengMenu.sql b/ruoyi-system/src/main/resources/createsql/base_dt_nengMenu.sql new file mode 100644 index 0000000..12f1d95 --- /dev/null +++ b/ruoyi-system/src/main/resources/createsql/base_dt_nengMenu.sql @@ -0,0 +1,27 @@ +-- 菜单 SQL +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(2110, '月看板-单台能耗', '5', '1', '/system/base_dt_neng', 'C', '0', 'system:base_dt_neng:view', '#', 'admin', sysdate, '', null, '月看板-单台能耗菜单'); + +-- 按钮 SQL +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(seq_sys_menu.nextval, '月看板-单台能耗查询', 2110, '1', '#', 'F', '0', 'system:base_dt_neng:list', '#', 'admin', sysdate, '', null, ''); + +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(seq_sys_menu.nextval, '月看板-单台能耗新增', 2110, '2', '#', 'F', '0', 'system:base_dt_neng:add', '#', 'admin', sysdate, '', null, ''); + +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(seq_sys_menu.nextval, '月看板-单台能耗修改', 2110, '3', '#', 'F', '0', 'system:base_dt_neng:edit', '#', 'admin', sysdate, '', null, ''); + +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(seq_sys_menu.nextval, '月看板-单台能耗删除', 2110, '4', '#', 'F', '0', 'system:base_dt_neng:remove', '#', 'admin', sysdate, '', null, ''); + +insert into sys_menu (menu_id, menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark) +values(seq_sys_menu.nextval, '月看板-单台能耗导出', 2110, '5', '#', 'F', '0', 'system:base_dt_neng:export', '#', 'admin', sysdate, '', null, ''); + +-- base_dt_neng主键序列 +create sequence seq_base_dt_neng +increment by 1 +start with 10 +nomaxvalue +nominvalue +cache 20; diff --git a/ruoyi-system/src/main/resources/mapper/system/BaseDtNengMapper.xml b/ruoyi-system/src/main/resources/mapper/system/BaseDtNengMapper.xml new file mode 100644 index 0000000..8dada2c --- /dev/null +++ b/ruoyi-system/src/main/resources/mapper/system/BaseDtNengMapper.xml @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + select id, year_name, month1, month2, month3, month4, month5, month6, month7, month8, month9, month10, month11, month12 from base_dt_neng + + + + + + + + + + SELECT seq_base_dt_neng.NEXTVAL as id FROM DUAL + + insert into base_dt_neng + + id, + year_name, + month1, + month2, + month3, + month4, + month5, + month6, + month7, + month8, + month9, + month10, + month11, + month12, + + + #{id}, + #{yearName}, + #{month1}, + #{month2}, + #{month3}, + #{month4}, + #{month5}, + #{month6}, + #{month7}, + #{month8}, + #{month9}, + #{month10}, + #{month11}, + #{month12}, + + + + + update base_dt_neng + + year_name = #{yearName}, + month1 = #{month1}, + month2 = #{month2}, + month3 = #{month3}, + month4 = #{month4}, + month5 = #{month5}, + month6 = #{month6}, + month7 = #{month7}, + month8 = #{month8}, + month9 = #{month9}, + month10 = #{month10}, + month11 = #{month11}, + month12 = #{month12}, + + where id = #{id} + + + + delete from base_dt_neng where id = #{id} + + + + delete from base_dt_neng where id in + + #{id} + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/resources/templates/system/base_dt_neng/add.html b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/add.html new file mode 100644 index 0000000..c69c936 --- /dev/null +++ b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/add.html @@ -0,0 +1,103 @@ + + + + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/resources/templates/system/base_dt_neng/base_dt_neng.html b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/base_dt_neng.html new file mode 100644 index 0000000..435c84f --- /dev/null +++ b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/base_dt_neng.html @@ -0,0 +1,134 @@ + + + + + + +
+
+
+
+
+ +
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-system/src/main/resources/templates/system/base_dt_neng/edit.html b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/edit.html new file mode 100644 index 0000000..52478f0 --- /dev/null +++ b/ruoyi-system/src/main/resources/templates/system/base_dt_neng/edit.html @@ -0,0 +1,104 @@ + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + \ No newline at end of file