public void AddToT_PaperPhoto(T_PaperPhoto t_PaperPhoto)
 {
     base.AddObject("T_PaperPhoto", t_PaperPhoto);
 }
 public static T_PaperPhoto CreateT_PaperPhoto(int ID, int photoID, int pageNumber, int stelePaperID)
 {
     T_PaperPhoto t_PaperPhoto = new T_PaperPhoto();
     t_PaperPhoto.ID = ID;
     t_PaperPhoto.PhotoID = photoID;
     t_PaperPhoto.PageNumber = pageNumber;
     t_PaperPhoto.StelePaperID = stelePaperID;
     return t_PaperPhoto;
 }