礼品卡管理模块

This commit is contained in:
季圣华
2017-07-15 00:33:28 +08:00
parent 8f4cac02ef
commit 883890eb00
21 changed files with 1402 additions and 52 deletions

View File

@@ -5,6 +5,7 @@ public class Depot implements java.io.Serializable
{
private Long id;
private String name;
private Integer type;
private String sort;
private String remark;
@@ -18,9 +19,10 @@ public class Depot implements java.io.Serializable
this.id = id ;
}
public Depot(String name, String sort, String remark)
public Depot(String name,Integer type, String sort, String remark)
{
this.name = name;
this.type = type;
this.sort = sort;
this.remark = remark;
}
@@ -41,6 +43,14 @@ public class Depot implements java.io.Serializable
this.name = name;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getSort() {
return sort;
}

View File

@@ -17,6 +17,11 @@ public class DepotModel implements Serializable
* 排序
*/
private String sort = "";
/**
* 类型
*/
private Integer type = 0;
/**
* 描述
@@ -74,6 +79,14 @@ public class DepotModel implements Serializable
this.name = name;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getSort() {
return sort;
}

View File

@@ -24,6 +24,7 @@ public class DepotItemModel implements Serializable
private String HeadIds = ""; //表头集合列表
private String MaterialIds = ""; //材料列表
private String MonthTime = ""; //月份
private Integer ProjectId = null;
private String browserType = "";
/**
* 文件名称
@@ -204,6 +205,14 @@ public class DepotItemModel implements Serializable
MonthTime = monthTime;
}
public Integer getProjectId() {
return ProjectId;
}
public void setProjectId(Integer projectId) {
ProjectId = projectId;
}
public String getMaterialIds() {
return MaterialIds;
}