/** * [set] INTEGER_NON_DIGIT_SUM: {DECIMAL(27)} <br> * * @param integerNonDigitSum The value of the column 'INTEGER_NON_DIGIT_SUM'. (NullAllowed: null * update allowed for no constraint) */ public void setIntegerNonDigitSum(java.math.BigDecimal integerNonDigitSum) { __modifiedProperties.addPropertyName("integerNonDigitSum"); this._integerNonDigitSum = integerNonDigitSum; }
/** * [set] (生年月日)BIRTHDATE: {DATE(10), refers to member.BIRTHDATE} <br> * 必須項目ではないので、このデータがない会員もいる。 * * @param birthdate The value of the column 'BIRTHDATE'. (NullAllowed: null update allowed for no * constraint) */ public void setBirthdate(java.util.Date birthdate) { __modifiedProperties.addPropertyName("birthdate"); this._birthdate = birthdate; }
/** * [set] (会員ステータス名称)MEMBER_STATUS_NAME: {VARCHAR(50), refers to member_status.MEMBER_STATUS_NAME} * <br> * * @param memberStatusName The value of the column 'MEMBER_STATUS_NAME'. (NullAllowed: null update * allowed for no constraint) */ public void setMemberStatusName(String memberStatusName) { __modifiedProperties.addPropertyName("memberStatusName"); this._memberStatusName = memberStatusName; }
/** * [set] (会員ID)MEMBER_ID: {INT(11), refers to member.MEMBER_ID} <br> * 会員を識別するID。連番として基本的に自動採番される。<br> * (会員IDだけに限らず)採番方法はDBMSによって変わる。 * * @param memberId The value of the column 'MEMBER_ID'. (NullAllowed: null update allowed for no * constraint) */ public void setMemberId(Integer memberId) { __modifiedProperties.addPropertyName("memberId"); this._memberId = memberId; }