Example #1
0
 /// <summary>
 /// 将基础对象名称(YWCourseJoin)数据,根据主键“(Id)”采用UPDATE操作更新到数据库中,并返回受影响的行数。
 /// </summary>
 /// <param name="yWCourseJoin">基础对象名称(YWCourseJoin)实例对象</param>
 public static int Update(YWCourseJoin yWCourseJoin)
 {
     CheckValid(yWCourseJoin);
     return(DataAccess.Update(yWCourseJoin));
 }
Example #2
0
        /// <summary>
        /// 对基础对象名称(YWCourseJoin)实例对象,进行数据有效性检查。
        /// </summary>
        /// <param name="yWCourseJoin">基础对象名称(YWCourseJoin)实例对象</param>
        public static void CheckValid(YWCourseJoin yWCourseJoin)
        {
            #region 检查各属性是否符合空值约束
            if (DataValid.IsNull(yWCourseJoin.CourseId))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.CourseName))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.PlanId))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.Status))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.TeacherName))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.TeacherId))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.StudentName))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.StudentId))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            if (DataValid.IsNull(yWCourseJoin.LastTime))
            {
                throw new CustomException("“”不能为空,请您确认输入是否正确。");
            }

            #endregion

            #region 检查字符串是否超出规定长度
            if (DataValid.IsOutLength(yWCourseJoin.CourseName, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.TeacherName, 20))
            {
                throw new CustomException("“”长度不能超过 20 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.StudentName, 20))
            {
                throw new CustomException("“”长度不能超过 20 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.Alternate1, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.Alternate2, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.Alternate3, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.Alternate4, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            if (DataValid.IsOutLength(yWCourseJoin.Alternate5, 50))
            {
                throw new CustomException("“”长度不能超过 50 个汉字或字符,请您确认输入是否正确。");
            }

            #endregion
        }
Example #3
0
 /// <summary>
 /// 将基础对象名称(YWCourseJoin)数据,采用INSERT操作插入到数据库中,并返回受影响的行数。
 /// </summary>
 /// <param name="yWCourseJoin">基础对象名称(YWCourseJoin)实例对象</param>
 public static int Insert(YWCourseJoin yWCourseJoin)
 {
     CheckValid(yWCourseJoin);
     return(DataAccess.Insert(yWCourseJoin));
 }