ID,
TITLE,
CONTENT,
TM,
ADDRESS,
NOTE,
FILE_URLS,
INTM,DATA_STAT
#{id},
#{title},
#{content},
#{tm},
#{address},
#{note},
#{fileUrls},
#{intm},#{dataStat}
and TITLE = #{title}
and DATA_STAT = #{dataStat}
and CONTENT = #{content}
and TM = #{tm}
and ADDRESS = #{address}
and NOTE = #{note}
and FILE_URLS = #{fileUrls}
and INTM = #{intm}
insert into ATT_MEETING_INFO(
)
values (
)
delete from ATT_MEETING_INFO where ID = #{id}
delete from ATT_MEETING_INFO
update ATT_MEETING_INFO set flag_valid = 0 where ID = #{id}
update ATT_MEETING_INFO
TITLE = #{title},
CONTENT = #{content},
TM = #{tm},
ADDRESS = #{address},
NOTE = #{note},
FILE_URLS = #{fileUrls},
DATA_STAT = #{dataStat},
INTM = #{intm},
ID = #{id}
update ATT_MEETING_INFO
TITLE = #{title},
CONTENT = #{content},
TM = #{tm},
ADDRESS = #{address},
NOTE = #{note},
FILE_URLS = #{fileUrls},
INTM = #{intm},
DATA_STAT = #{dataStat},