DownLoad.java~4~
上传用户: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.     public boolean equals(Object other) {
  16.         if (!(other instanceof Admin))
  17.             return false;
  18.         DownLoad castOther = (DownLoad) other;
  19.         return new EqualsBuilder()
  20.                 .append(this.getDow_ID(), castOther.getDow_ID())
  21.                 .isEquals();
  22.     }
  23.     public int hashCode() {
  24.         return new HashCodeBuilder()
  25.                 .append(getDow_ID())
  26.                 .toHashCode();
  27.     }
  28.     public Long getDow_ID() {
  29.         return dow_ID;
  30.     }
  31.     public String getDow_Title() {
  32.         return dow_Title;
  33.     }
  34.     public Date getDow_Time() {
  35.         return dow_Time;
  36.     }
  37.     public String getDow_Summary() {
  38.         return dow_Summary;
  39.     }
  40.     public Image getFileUp() {
  41.         return fileUp;
  42.     }
  43.     public Image getImageUp() {
  44.         return imageUp;
  45.     }
  46.     public Long getDow_Order() {
  47.         return dow_Order;
  48.     }
  49.     public String getDow_Language() {
  50.         return dow_Language;
  51.     }
  52.     public Long getDow_Type() {
  53.         return dow_Type;
  54.     }
  55.     public void setDow_ID(Long dow_ID) {
  56.         this.dow_ID = dow_ID;
  57.     }
  58.     public void setDow_Title(String dow_Title) {
  59.         this.dow_Title = dow_Title;
  60.     }
  61.     public void setDow_Time(Date dow_Time) {
  62.         this.dow_Time = dow_Time;
  63.     }
  64.     public void setDow_Summary(String dow_Summary) {
  65.         this.dow_Summary = dow_Summary;
  66.     }
  67.     public void setFileUp(Image fileUp) {
  68.         this.fileUp = fileUp;
  69.     }
  70.     public void setImageUp(Image imageUp) {
  71.         this.imageUp = imageUp;
  72.     }
  73.     public void setDow_Order(Long dow_Order) {
  74.         this.dow_Order = dow_Order;
  75.     }
  76.     public void setDow_Language(String dow_Language) {
  77.         this.dow_Language = dow_Language;
  78.     }
  79.     public void setDow_Type(Long dow_Type) {
  80.         this.dow_Type = dow_Type;
  81.     }
  82. }