-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from AkkaRin11/master
- Loading branch information
Showing
6 changed files
with
99 additions
and
25 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/main/kotlin/com/albatros/springsecurity/data/model/dto/SearchFragmentXML.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.albatros.springsecurity.data.model.dto | ||
|
||
data class SearchFragmentXML( | ||
val fragment: List<String> | ||
) |
22 changes: 0 additions & 22 deletions
22
src/main/kotlin/com/albatros/springsecurity/data/model/dto/TenderDto.java
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
src/main/kotlin/com/albatros/springsecurity/data/model/dto/TenderDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.albatros.springsecurity.data.model.dto | ||
|
||
import java.io.Serializable | ||
|
||
class TenderDto( | ||
var ApiTenderInfo: String?, | ||
var Category: String?, | ||
var Customer: String?, | ||
var Date: String?, | ||
var EndTime: String?, | ||
var Etp: String?, | ||
var Fz: String?, | ||
var ID: String?, | ||
var Price: String?, | ||
var Region: String?, | ||
var TenderLink: String?, | ||
var TenderLinkInner: String?, | ||
var TenderName: String?, | ||
var TenderNumOuter: String?, | ||
var Total: String?, | ||
var User_id: String?, | ||
var searchFragmentXML: SearchFragmentXML? | ||
): Serializable |
42 changes: 42 additions & 0 deletions
42
src/main/kotlin/com/albatros/springsecurity/data/model/dto/TenderInfoDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package com.albatros.springsecurity.data.model.dto | ||
|
||
data class TenderInfoDto( | ||
val ApiContractInfo: String, | ||
val ApiIzmInfo: String, | ||
val ApiPredInfo: String, | ||
val ApiProtokolInfo: String, | ||
val Category: String, | ||
val Customer: String, | ||
val CustomerINN: String, | ||
val Date: String, | ||
val EisLink: String, | ||
val EisLinkPrint: String, | ||
val EndTime: String, | ||
val Etp: String, | ||
val EtpLink: String, | ||
val Fz: String, | ||
val ID: String, | ||
val Info: String, | ||
val ObPrice: String, | ||
val ObPriceZ: String, | ||
val PlanZakupApiInfo: String, | ||
val PlanZakupNumber: String, | ||
val Price: String, | ||
val Region: String, | ||
val TenderLink: String, | ||
val TenderLinkEtp: String, | ||
val TenderLinkInner: String, | ||
val TenderName: String, | ||
val TenderNumOuter: String, | ||
val TenderType: String, | ||
val User_id: String, | ||
val biddingDate: String, | ||
val contactEmail: String, | ||
val contactName: String, | ||
val contactPhone: String, | ||
val deliveryPlace: String, | ||
val docsXML: List<Any>, | ||
val productsXML: List<Any>, | ||
val zakazLink: String, | ||
val zakazTendersLink: String | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters