updateByPrimaryKey与updateByPrimaryKeySelective区别
updateByPrimaryKeySelective
updateByPrimaryKey
前者只是更新新的model中不为空的字段。(注意是新的Model)
后者则会将为空的字段在数据库中置为NULL。(在新的mode中没有set的,都会置为null)
updateByPrimaryKeySelective
updateByPrimaryKey
前者只是更新新的model中不为空的字段。(注意是新的Model)
后者则会将为空的字段在数据库中置为NULL。(在新的mode中没有set的,都会置为null)