Skip to content

Instantly share code, notes, and snippets.

@nastanford
Created February 8, 2014 20:36
Show Gist options
  • Save nastanford/8889888 to your computer and use it in GitHub Desktop.
Save nastanford/8889888 to your computer and use it in GitHub Desktop.
ColdFusion Art Gallery ColdBox Lesson 4
/**
* @accessors true
* @output "no"
*/
component displayname="Artist" hint="Artist"
{
property name="artistid" type="numeric" displayname="ArtistID" hint="ArtistID";
property name="firstname" type="string" displayname="First Name" hint="First Name";
property name="lastname" type="string" displayname="Last Name" hint="Last Name";
property name="address" type="string" displayname="Address" hint="Address";
property name="postalcode" type="numeric" displayname="Postal Code" hint="Postal Code";
property name="email" type="string" displayname="Email" hint="Email";
property name="phone" type="numeric" displayname="Phone" hint="Phone";
property name="fax" type="numeric" displayname="Fax" hint="Fax";
property name="thepassword" type="string" displayname="Password" hint="Password" default="Password";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment