Skip to content

Commit

Permalink
20170826
Browse files Browse the repository at this point in the history
  • Loading branch information
Tailyou committed Sep 11, 2017
1 parent 31e6e47 commit 8852bc0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import java.io.Serializable
import java.lang.RuntimeException

//展项基类
open class BaseExhibit(var autoNo: Int, var fileNo: String, var name: String,
var locX: Double, var locY: Double,
var mapPicLg: String, var mapPicSm: String) : Cloneable, Serializable {
open class BaseExhibit(open var autoNo: Int, open var fileNo: String, open var name: String,
open var locX: Double, open var locY: Double, open var mapPicLg: String,
open var mapPicSm: String) : Cloneable, Serializable {

public override fun clone(): BaseExhibit {
val clone: BaseExhibit
Expand Down

0 comments on commit 8852bc0

Please sign in to comment.