From c65bd7a7b43e3b677ddd725b01a29430f9adc0be Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Thu, 8 Aug 2024 13:48:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=8E=A8=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{cc_20240727.sql => data_push_20240727.sql} | 0 2024/重庆机具/data_push_20240727.sql | 34 +++++++++++++++++++ 2 files changed, 34 insertions(+) rename 2024/南网仓储/{cc_20240727.sql => data_push_20240727.sql} (100%) create mode 100644 2024/重庆机具/data_push_20240727.sql diff --git a/2024/南网仓储/cc_20240727.sql b/2024/南网仓储/data_push_20240727.sql similarity index 100% rename from 2024/南网仓储/cc_20240727.sql rename to 2024/南网仓储/data_push_20240727.sql diff --git a/2024/重庆机具/data_push_20240727.sql b/2024/重庆机具/data_push_20240727.sql new file mode 100644 index 0000000..9e55640 --- /dev/null +++ b/2024/重庆机具/data_push_20240727.sql @@ -0,0 +1,34 @@ +--任务:南网施工装备一体化数据推送开发 + +create table data_receive_info +( + id int auto_increment comment '主键ID' + primary key, + receive_status int default 0 null comment '接收状态(0:未完成 1 已完成)', + push_num int null comment '推送数量', + receive_date datetime null comment '推送日期' +) + comment '推送接收表'; + + +create table data_receive_detail +( + id int auto_increment comment '主键ID' + primary key, + receive_id int null comment '推送ID', + type_id int null comment '机具类型id', + ma_id int null comment '机具编码ID', + rent_time datetime null comment '租赁日期', + rent_price varchar(10) null comment '租赁价格', + unit_id int null comment '所属单位', + supplier varchar(255) null comment '生产厂家', + out_factory_time datetime null comment '出厂日期', + is_new int null comment '是否新装备(0 是 1否)', + check_code varchar(255) null comment '检验证编号', + check_unit varchar(255) null comment '检验单位', + check_date datetime null comment '检验日期', + next_check_date datetime null comment '下次检验日期', + ma_user_name varchar(10) null comment '机手姓名', + status int default 0 null comment '状态(0 未接收 1已接收)' +) + comment '推送接收明细表'; \ No newline at end of file