DownLoad.java~5~
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.chinacannel.entity;
  2. import java.io.*;
  3. import java.util.*;
  4. import org.apache.commons.lang.builder.*;
  5. public class DownLoad implements Serializable {
  6.     private Long dow_ID;
  7.     private String dow_Title;
  8.     private Image fileUp;
  9.     private Date dow_Time;
  10.     private String dow_Summary;
  11.     private Image imageUp;
  12.     private Long dow_Order;
  13.     private String dow_Language;
  14.     private Long dow_Type;
  15.     private String dow_BackName;
  16.     public boolean equals(Object other) {
  17.         if (!(other instanceof Admin))
  18.             return false;
  19.         DownLoad castOther = (DownLoad) other;
  20.         return new EqualsBuilder()
  21.                 .append(this.getDow_ID(), castOther.getDow_ID())
  22.                 .isEquals();
  23.     }
  24.     public int hashCode() {
  25.         return new HashCodeBuilder()
  26.                 .append(getDow_ID())
  27.                 .toHashCode();
  28.     }
  29.     public Long getDow_ID() {
  30.         return dow_ID;
  31.     }
  32.     public String getDow_Title() {
  33.         return dow_Title;
  34.     }
  35.     public Date getDow_Time() {
  36.         return dow_Time;
  37.     }
  38.     public String getDow_Summary() {
  39.         return dow_Summary;
  40.     }
  41.     public Image getFileUp() {
  42.         return fileUp;
  43.     }
  44.     public Image getImageUp() {
  45.         return imageUp;
  46.     }
  47.     public Long getDow_Order() {
  48.         return dow_Order;
  49.     }
  50.     public String getDow_Language() {
  51.         return dow_Language;
  52.     }
  53.     public Long getDow_Type() {
  54.         return dow_Type;
  55.     }
  56.     public void setDow_ID(Long dow_ID) {
  57.         this.dow_ID = dow_ID;
  58.     }
  59.     public void setDow_Title(String dow_Title) {
  60.         this.dow_Title = dow_Title;
  61.     }
  62.     public void setDow_Time(Date dow_Time) {
  63.         this.dow_Time = dow_Time;
  64.     }
  65.     public void setDow_Summary(String dow_Summary) {
  66.         this.dow_Summary = dow_Summary;
  67.     }
  68.     public void setFileUp(Image fileUp) {
  69.         this.fileUp = fileUp;
  70.     }
  71.     public void setImageUp(Image imageUp) {
  72.         this.imageUp = imageUp;
  73.     }
  74.     public void setDow_Order(Long dow_Order) {
  75.         this.dow_Order = dow_Order;
  76.     }
  77.     public void setDow_Language(String dow_Language) {
  78.         this.dow_Language = dow_Language;
  79.     }
  80.     public void setDow_Type(Long dow_Type) {
  81.         this.dow_Type = dow_Type;
  82.     }
  83. }