IDはオブジェクトに挿入されます:
int num_of_record_inserted = fileAttachmentMapper.insertSelective(fileAttachment);
int id = fileAttachment.getId();
selectKey
とは 挿入するオブジェクト、この場合はfileAttachment
にIDを設定します。 そのプロパティのid
とAFTERレコードが挿入されます。
IDはオブジェクトに挿入されます:
int num_of_record_inserted = fileAttachmentMapper.insertSelective(fileAttachment);
int id = fileAttachment.getId();
selectKey
とは 挿入するオブジェクト、この場合はfileAttachment
にIDを設定します。 そのプロパティのid
とAFTERレコードが挿入されます。