美文网首页
sh三期上线

sh三期上线

作者: 程序男保姆 | 来源:发表于2022-09-10 18:55 被阅读0次
    CREATE TABLE `biz_assets` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
      `name` varchar(50) DEFAULT '' COMMENT '资产名称',
      `bh` varchar(50) DEFAULT '' COMMENT '资产编号',
      `specifications` varchar(50) DEFAULT '' COMMENT '规格型号',
      `type` varchar(50) DEFAULT '' COMMENT '资产类别 数据字典ASSETS_TYPE',
      `manufacturer` varchar(50) DEFAULT '' COMMENT '生产厂家',
      `add_type` varchar(50) DEFAULT '' COMMENT '增加方式 数据字典ASSETS_ADD_TYPE',
      `dept_id` int(11) DEFAULT NULL COMMENT '使用部门',
      `user_name` varchar(50) DEFAULT '' COMMENT '领用人',
      `location` varchar(50) DEFAULT '' COMMENT '存放地点',
      `num` int(11) DEFAULT NULL COMMENT '数量',
      `unit` varchar(50) DEFAULT NULL COMMENT '单位 个 条 把 台',
      `price` decimal(19,2) DEFAULT '0.00' COMMENT '采购单价',
      `total_price` decimal(19,2) DEFAULT '0.00' COMMENT '采购总金额',
      `purchasing_time` datetime DEFAULT NULL COMMENT '采购时间',
      `start_time` datetime DEFAULT NULL COMMENT '开始使用日期',
      `output_rate` decimal(19,2) DEFAULT '0.00' COMMENT '净残值率',
      `salvage_value` decimal(19,2) DEFAULT '0.00' COMMENT '净残值(=采购金额*净残值率)',
      `use_year` int(11) DEFAULT '0' COMMENT '使用年限/年',
      `depreciation_method` varchar(50) DEFAULT '' COMMENT '折旧方法 数据字典DEPRECIATION_METHOD',
      `month_depreciation` decimal(19,2) DEFAULT '0.00' COMMENT '月折旧额',
      `accrued_month` int(11) DEFAULT NULL COMMENT '已计提月份',
      `accumulated_depreciation` decimal(19,2) DEFAULT '0.00' COMMENT '累计折旧',
      `net_worth` decimal(19,2) DEFAULT '0.00' COMMENT '净值',
      `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
      `remark` varchar(30) DEFAULT '' COMMENT '备注',
      `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
      `create_by` varchar(64) DEFAULT '' COMMENT '创建者',
      `create_time` datetime DEFAULT NULL COMMENT '创建时间',
      `update_by` varchar(64) DEFAULT '' COMMENT '更新者',
      `update_time` datetime DEFAULT NULL COMMENT '更新时间',
      PRIMARY KEY (`id`) USING BTREE
    ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='固定资产表';
    
    CREATE TABLE `biz_company` (
      `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
      `code` varchar(50) DEFAULT '' COMMENT '单位code',
      `name` varchar(50) DEFAULT '' COMMENT '单位名称',
      `province_name` varchar(50) DEFAULT '' COMMENT '所属省',
      `city_name` varchar(50) DEFAULT '' COMMENT '所属市',
      `account_name` varchar(64) DEFAULT '' COMMENT '户名',
      `card_number` varchar(64) DEFAULT '' COMMENT '单位账号',
      `bank_of_deposit` varchar(64) DEFAULT '' COMMENT '开户行',
      `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
      `remark` varchar(30) DEFAULT '' COMMENT '备注',
      `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
      `create_by` varchar(64) DEFAULT '' COMMENT '创建者',
      `create_time` datetime DEFAULT NULL COMMENT '创建时间',
      `update_by` varchar(64) DEFAULT '' COMMENT '更新者',
      `update_time` datetime DEFAULT NULL COMMENT '更新时间',
      PRIMARY KEY (`id`) USING BTREE
    ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='公司单位';
    
    alter table pay_user  add card_number varchar(255) DEFAULT NULL COMMENT '工资卡号' after superior_name;
    alter table pay_user  add bank_of_deposit varchar(255) DEFAULT NULL COMMENT '开户行' after card_number;
    
    alter  table  invoice  add  index  order_no_index  order_no;
    alter table biz_reimburse_apply  add project_code varchar(50) DEFAULT NULL COMMENT '项目预算code' after apply_status;
    
    alter table biz_reimburse_apply  add pay_type char(1) DEFAULT '0' COMMENT '类型 1 对公 2 对私' after amount;
    
    alter table biz_reimburse_apply  add reimburse_user_no varchar(255) DEFAULT '' COMMENT '报销人NO' after reimburse_user;
    
    
    alter table biz_loan_apply  add project_code varchar(50) DEFAULT NULL COMMENT '项目预算code' after payment_status;
    
    alter table biz_loan_apply  add pay_type char(1) DEFAULT '0' COMMENT '类型 1 对公 2 对私' after project_code;
    
    alter table biz_loan_apply  add travel_flag char(1) DEFAULT '0' COMMENT '是否差旅借款 1 是 2 否' after pay_type;
    
    alter table biz_loan_apply  add  travel_arr_address varchar(30) DEFAULT '' COMMENT '到达地' after travel_flag;
    
    alter table biz_loan_apply  add  travel_days int(3) DEFAULT NULL COMMENT '出差天数' after travel_arr_address;
    
    alter table biz_loan_apply  add  travel_peo_num int(3) DEFAULT NULL COMMENT '出差天数' after travel_days;
    
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '1', '房屋', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '2', '建筑物', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '3', '机器', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '4', '模具', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '5', '运输工具', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '6', '设备', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '7', '器具', 0, 0, '', '2019-05-09 15:13:01');
    
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '8', '工具', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_TYPE', '资产类型', '9', '家具', 0, 0, '', '2019-05-09 15:13:01');
    
    
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '1', '直接购入', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '2', '投资者投入', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '3', '捐赠', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '4', '盘盈', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '5', '在建工程', 0, 0, '', '2019-05-09 15:13:01');
    
    INSERT INTO `sys_dict` ( `type_code`, `type_name`, `code`, `name`, `sort_no`, `status`, `dict_desc`, `create_time`) 
    VALUES ( 'ASSETS_ADD_TYPE', '增加方式', '6', '融资租入', 0, 0, '', '2019-05-09 15:13:01');
    
    
    
    

    相关文章

      网友评论

          本文标题:sh三期上线

          本文链接:https://www.haomeiwen.com/subject/ylqbnrtx.html