everything but licenses
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
package com.bayer.edam.excelimport;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
||||
public class CropScienceAsset {
|
||||
|
||||
Integer toolboxAssetId;
|
||||
|
||||
String assetPath;
|
||||
String filename;
|
||||
String appendClassification;
|
||||
|
||||
String byr_Title;
|
||||
String byr_MarketingId;
|
||||
String byr_cs_assetApproval;
|
||||
//String byr_cs_brand;
|
||||
String byr_cs_releaseDate;
|
||||
String byr_cs_retireDate;
|
||||
String byr_cs_businessUnit;
|
||||
String byr_cs_license_classification;
|
||||
String byr_cs_description;
|
||||
String byr_cs_keywords_tl;
|
||||
String byr_campaignYearLabel; // TODO needs to be verified with Delaware
|
||||
String byr_campaignTitle;
|
||||
String byr_cs_IsShouldBePublished;
|
||||
String byr_cs_warehouseAvailable;
|
||||
|
||||
HashSet<String> brands = new HashSet<String>();
|
||||
HashSet<String> indications = new HashSet<String>();
|
||||
|
||||
|
||||
Long fileSize;
|
||||
|
||||
public CropScienceAsset(Integer toolboxAssetId) {
|
||||
this.toolboxAssetId = toolboxAssetId;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user