Rev 23951 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;import java.time.LocalDateTime;import com.fasterxml.jackson.annotation.JsonProperty;public class GrnPendingDataModel {@JsonProperty("Code")private String storeCode;@JsonProperty("Name")private String storeName;@JsonProperty("Email")private String email;@JsonProperty("Phone")private String phone;@JsonProperty("Invoice Number")private String invoiceNumber;@JsonProperty("Billing Timestamp")private LocalDateTime billingTimestamp;@JsonProperty("Item Id")private String itemId;@JsonProperty("Brand")private String brand;@JsonProperty("Model Name")private String modelName;@JsonProperty("Model Number")private String modelNumber;@JsonProperty("Color")private String color;@JsonProperty("Unit Price")private float unitPrice;@JsonProperty("Serial Number")private String serialNumber;public LocalDateTime getBillingTimestamp() {return billingTimestamp;}public void setBillingTimestamp(LocalDateTime billingTimestamp) {this.billingTimestamp = billingTimestamp;}public float getUnitPrice() {return unitPrice;}public void setUnitPrice(float unitPrice) {this.unitPrice = unitPrice;}public String getStoreCode() {return storeCode;}public void setStoreCode(String storeCode) {this.storeCode = storeCode;}public String getStoreName() {return storeName;}public void setStoreName(String storeName) {this.storeName = storeName;}public String getEmail() {return email;}public void setEmail(String email) {this.email = email;}public String getPhone() {return phone;}public void setPhone(String phone) {this.phone = phone;}public String getInvoiceNumber() {return invoiceNumber;}public void setInvoiceNumber(String invoiceNumber) {this.invoiceNumber = invoiceNumber;}public String getItemId() {return itemId;}public void setItemId(String itemId) {this.itemId = itemId;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public String getModelName() {return modelName;}public void setModelName(String modelName) {this.modelName = modelName;}public String getModelNumber() {return modelNumber;}public void setModelNumber(String modelNumber) {this.modelNumber = modelNumber;}public String getColor() {return color;}public void setColor(String color) {this.color = color;}public String getSerialNumber() {return serialNumber;}public void setSerialNumber(String serialNumber) {this.serialNumber = serialNumber;}}