public class MessageControllerImpl extends java.lang.Object implements MessageController
构造器和说明 |
---|
MessageControllerImpl(SystemSessionController sessionController) |
限定符和类型 | 方法和说明 |
---|---|
void |
add(Message record)
新增记录
|
void |
deleteMessageById(java.lang.String id)
根据id删除一条消息
|
java.util.List<Message> |
find(QueryCondition queryCondition)
查找记录
|
java.util.List<Message> |
findMessages(QueryCondition queryCondition)
根据条件查询消息
|
Message |
findOne(QueryCondition queryCondition)
查找一条记录,找不到返回null
|
DataList<Message> |
findWithTotalCount(QueryCondition queryCondition)
查找记录,附带返回该查询条件下的数据总条数
|
Message |
getById(java.lang.String id)
通过id获取记录
|
void |
remove(QueryCondition queryCondition)
删除记录,根据查询条件来删除
|
void |
remove(java.lang.String id)
删除记录
|
void |
saveMessage(Message message)
保存一条消息
|
void |
update(Message record)
更新记录,根据记录id来更新
|
void |
updateMessage(Message message)
更新一条消息
|
public MessageControllerImpl(SystemSessionController sessionController)
public void saveMessage(Message message) throws java.lang.Exception
MessageController
saveMessage
在接口中 MessageController
java.lang.Exception
public void deleteMessageById(java.lang.String id) throws java.lang.Exception
MessageController
deleteMessageById
在接口中 MessageController
java.lang.Exception
public void updateMessage(Message message) throws java.lang.Exception
MessageController
updateMessage
在接口中 MessageController
java.lang.Exception
public java.util.List<Message> findMessages(QueryCondition queryCondition) throws java.lang.Exception
MessageController
findMessages
在接口中 MessageController
java.lang.Exception
public void add(Message record) throws java.lang.Exception
DataOperator
add
在接口中 DataOperator<Message>
record
- 记录对象java.lang.Exception
public Message getById(java.lang.String id) throws java.lang.Exception
DataOperator
getById
在接口中 DataOperator<Message>
id
- 记录idjava.lang.Exception
public void update(Message record) throws java.lang.Exception
DataOperator
update
在接口中 DataOperator<Message>
record
- 记录对象java.lang.Exception
public void remove(java.lang.String id) throws java.lang.Exception
DataOperator
remove
在接口中 DataOperator<Message>
id
- 记录idjava.lang.Exception
public void remove(QueryCondition queryCondition) throws java.lang.Exception
DataOperator
remove
在接口中 DataOperator<Message>
queryCondition
- 查询条件java.lang.Exception
public java.util.List<Message> find(QueryCondition queryCondition) throws java.lang.Exception
DataOperator
find
在接口中 DataOperator<Message>
queryCondition
- 查询条件java.lang.Exception
public Message findOne(QueryCondition queryCondition) throws java.lang.Exception
DataOperator
findOne
在接口中 DataOperator<Message>
queryCondition
- 查询条件java.lang.Exception
public DataList<Message> findWithTotalCount(QueryCondition queryCondition) throws java.lang.Exception
DataOperator
findWithTotalCount
在接口中 DataOperator<Message>
queryCondition
- 查询条件java.lang.Exception