CreateProcessBean.swift 457 B

123456789101112131415161718192021222324252627
  1. //
  2. // CreateProcessBean.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 16/7/29.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import Foundation
  9. import ObjectMapper
  10. class CreateProcessBean:Mappable {
  11. var title:String?
  12. var identity:String?
  13. init(){
  14. }
  15. required init?(map: Map) {
  16. }
  17. func mapping(map: Map) {
  18. title <- map["title"]
  19. identity <- map["identity"]
  20. }
  21. }