select product_output_id, node_name, node_id, time_type, data_time, name, number, unit, del_flag, create_by, create_time, update_by, update_time, remark, data_type,product_type from product_output
insert into product_output
product_output_id,
node_id,
node_name,
time_type,
data_time,
name,
number,
unit,
del_flag,
create_by,
create_time,
update_by,
update_time,
remark,
data_type,
product_type,
#{productOutputId},
#{nodeId},
#{nodeName},
#{timeType},
#{dataTime},
#{name},
#{number},
#{unit},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{dataType},
#{productType},
update product_output
time_type = #{timeType},
data_time = #{dataTime},
name = #{name},
number = #{number},
unit = #{unit},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
data_type = #{dataType},
product_type = #{productType},
where product_output_id = #{productOutputId}
delete from product_output where product_output_id = #{productOutputId}
delete from product_output where product_output_id in
#{productOutputId}