introduced field_attributes shortcuts and added method on_base() to all processor classes
This commit is contained in:
@@ -26,13 +26,14 @@ struct Task : core::Model {
|
||||
|
||||
template<typename Operator>
|
||||
void process( Operator& op ) {
|
||||
using namespace matador;
|
||||
namespace field = matador::access;
|
||||
field::process( op, *matador::base_class<Model>( this ) );
|
||||
field::attribute( op, "name", name, 511 );
|
||||
field::attribute( op, "description", description, 511 );
|
||||
field::attribute( op, "job_name", job_name, 511 );
|
||||
field::attribute( op, "name", name, UniqueVarChar511 );
|
||||
field::attribute( op, "description", description, VarChar1023 );
|
||||
field::attribute( op, "job_name", job_name, VarChar511 );
|
||||
field::attribute( op, "state", state );
|
||||
field::belongs_to( op, "payload", payload, matador::utils::CascadeAllFetchLazy );
|
||||
field::belongs_to( op, "payload", payload, utils::CascadeAllFetchLazy );
|
||||
field::attribute( op, "job_mode", job_mode );
|
||||
field::attribute( op, "start_delay", start_delay );
|
||||
field::attribute( op, "interval", interval );
|
||||
|
||||
Reference in New Issue
Block a user