首页 > 其他分享 >TienChin 渠道管理-渠道页面完善

TienChin 渠道管理-渠道页面完善

时间:2023-09-17 23:58:40浏览次数:44  
标签:create 09 update 渠道 time 2023 TienChin channel 页面

最后附上渠道管理的数据 install SQL 语句:

INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (3, '小红书渠道', 1, '小红书渠道', 1, 'qudao', 'qudao', '2023-09-03 22:10:06', '2023-09-04 23:29:30', '0');
INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (4, '快手渠道', 0, '快手渠道', 1, 'qudao', 'qudao', '2023-09-03 22:10:23', '2023-09-04 23:29:30', '0');
INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (5, '百度竞价', 1, '百度竞价推广', 1, 'qudao', null, '2023-09-04 23:28:38', '2023-09-04 23:48:20', '0');
INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (6, '地推', 0, '地推', 2, 'qudao', null, '2023-09-04 23:28:38', '2023-09-04 23:48:20', '0');
INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (7, '小红书渠道', 1, '无', 1, 'qudao', null, '2023-09-04 23:28:38', '2023-09-04 23:48:20', '0');
INSERT INTO TienChin.tienchin_channel (channel_id, channel_name, status, remark, type, create_by, update_by, create_time, update_time, del_flag) VALUES (8, '快手渠道', 0, '无', 1, 'qudao', null, '2023-09-04 23:28:38', '2023-09-04 23:48:20', '0');

标签:create,09,update,渠道,time,2023,TienChin,channel,页面
From: https://www.cnblogs.com/BNTang/p/17710288.html

相关文章

  • TienChin 渠道管理-渠道搜索
    ChannelController@PreAuthorize("hasPermission('tienchin:channel:list')")@GetMapping("/list")TableDataInfolist(ChannelVOchannelVO){startPage();List<Channel>list=iChannelService.selectChannelList(channe......
  • TienChin 渠道管理-渠道导出
    ChannelController/***导出渠道列表*/@PreAuthorize("hasPermission('tienchin:channel:export')")@Log(title="渠道管理",businessType=BusinessType.EXPORT)@PostMapping("/export")publicvoidexport(HttpServletResponser......
  • TienChin 渠道管理-删除渠道
    更改一下菜单权限,将删除渠道的delete改为remove:ChannelController.java@PreAuthorize("hasPermission('tienchin:channel:remove')")@Log(title="渠道管理",businessType=BusinessType.DELETE)@DeleteMapping("/{channelIds}")AjaxResult......
  • TienChin 渠道管理-更新渠道接口开发
    ChannelController/***修改渠道*/@PreAuthorize("hasPermission('tienchin:channel:edit')")@Log(title="渠道管理",businessType=BusinessType.UPDATE)@PutMappingAjaxResultedit(@Validated@RequestBodyChannelVOchannelVO){......
  • JAVA 实现登录页面生成验证码
    1importjavax.swing.*;2importjava.awt.Color;3importjava.awt.Font;4importjava.awt.Graphics;5importjava.awt.event.ActionEvent;6importjava.awt.event.ActionListener;7importjava.util.Random;89publicclassLoginFrameext......
  • Java swing 实现QQ登录注册页面
    代码如下1packagecom.lty;2importjavax.swing.*;3importjava.awt.*;4importjava.awt.event.ActionEvent;5importjava.awt.event.ActionListener;6importjava.util.Random;78publicclassQQLoginPage{9privateJFrameframe;10......
  • Vue js 框下制作登录页面的新方法
    ......
  • TienChin 渠道管理-配置校验失败信息
    新建ValidationMessages.properties:channel.name.notnull=渠道名称不能为空channel.type.notnull=渠道类型不能为空channel.status.notnull=渠道状态不能为空channel.type.invalid=渠道类型无效channel.status.invalid=渠道状态无效......
  • ant design pro改造表格页面
    找到src/pages/TableList/index.tsx先ctrl+shift+-全局压缩在TableList找到columns换成我们自己的ProColumns中放的是数据下图为API.InterfaceInfoconstcolumns:ProColumns<API.InterfaceInfo>[]=[ {   title:'id',   dataIndex:'id',  ......
  • TienChin 渠道管理-添加渠道
    在我们平时新建一个全新的Java类,这个类需要存放的包不存在,可以使用如下的方式进行创建:含义就是说,将ChannelVO这个类放在vo这个包当中,如果存在则不创建,存在就将新建的类放入其中。ChannelVO/***@authorBNTang*@version1.0*@description渠道管理,前端展示对象......