Subversion Repositories SmartDukaan

Rev

Rev 28493 | Rev 28665 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28493 Rev 28664
Line 31... Line 31...
31
	private String pincode;
31
	private String pincode;
32
	private String vendorString;
32
	private String vendorString;
33
	private String gstin;
33
	private String gstin;
34
 
34
 
35
	private int logisticsLocation;
35
	private int logisticsLocation;
36
	private int billingType;
36
	private Integer billingType;
37
	@Enumerated(EnumType.STRING)
37
	@Enumerated(EnumType.STRING)
38
	private WarehouseType warehouseType;
38
	private WarehouseType warehouseType;
39
 
39
 
40
	@Enumerated(EnumType.STRING)
40
	@Enumerated(EnumType.STRING)
41
	private InventoryType inventoryType;
41
	private InventoryType inventoryType;
Line 136... Line 136...
136
 
136
 
137
	public void setLogisticsLocation(int logisticsLocation) {
137
	public void setLogisticsLocation(int logisticsLocation) {
138
		this.logisticsLocation = logisticsLocation;
138
		this.logisticsLocation = logisticsLocation;
139
	}
139
	}
140
 
140
 
141
	public int getBillingType() {
141
	public Integer getBillingType() {
142
		return billingType;
142
		return billingType;
143
	}
143
	}
144
 
144
 
145
	public void setBillingType(int billingType) {
145
	public void setBillingType(Integer billingType) {
146
		this.billingType = billingType;
146
		this.billingType = billingType;
147
	}
147
	}
148
 
148
 
149
	public WarehouseType getWarehouseType() {
149
	public WarehouseType getWarehouseType() {
150
		return warehouseType;
150
		return warehouseType;