We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agent agent = new Agent(); agent.setAgentId(6666); agent.setBeginTime("8888888888"); agent.setId(17); FieldFilter fieldFilter = FieldFilter.create(Agent.class,"agent_id");//抛异常 sql err FieldFilter fieldFilter = FieldFilter.create(Agent.class,"agentId");//可正常操作 dao.update(agent,fieldFilter);
class Agent{ @id @column("id") private Integer id; @column("begin_time") private String beginTime; @column("agent_id") private String agentId; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Agent agent = new Agent();
agent.setAgentId(6666);
agent.setBeginTime("8888888888");
agent.setId(17);
FieldFilter fieldFilter = FieldFilter.create(Agent.class,"agent_id");//抛异常 sql err
FieldFilter fieldFilter = FieldFilter.create(Agent.class,"agentId");//可正常操作
dao.update(agent,fieldFilter);
class Agent{
@id
@column("id")
private Integer id;
@column("begin_time")
private String beginTime;
@column("agent_id")
private String agentId;
}
The text was updated successfully, but these errors were encountered: