package com.basic.x01.securityCheck.model;
|
|
public class TbSecurityCheckList {
|
|
private String listId;
|
private String typeId;
|
|
private String typeName; //
|
|
private String orgId;
|
private String listName;
|
private String startDate;
|
private String endDate;
|
private String weekDays;
|
private String checkFlow;
|
private String createTime;
|
private String createUserId;
|
|
public String getListId() {
|
return listId;
|
}
|
public void setListId(String listId) {
|
this.listId = listId;
|
}
|
public String getTypeId() {
|
return typeId;
|
}
|
public void setTypeId(String typeId) {
|
this.typeId = typeId;
|
}
|
public String getOrgId() {
|
return orgId;
|
}
|
public void setOrgId(String orgId) {
|
this.orgId = orgId;
|
}
|
public String getListName() {
|
return listName;
|
}
|
public void setListName(String listName) {
|
this.listName = listName;
|
}
|
public String getStartDate() {
|
return startDate;
|
}
|
public void setStartDate(String startDate) {
|
this.startDate = startDate;
|
}
|
public String getEndDate() {
|
return endDate;
|
}
|
public void setEndDate(String endDate) {
|
this.endDate = endDate;
|
}
|
public String getWeekDays() {
|
return weekDays;
|
}
|
public void setWeekDays(String weekDays) {
|
this.weekDays = weekDays;
|
}
|
public String getCheckFlow() {
|
return checkFlow;
|
}
|
public void setCheckFlow(String checkFlow) {
|
this.checkFlow = checkFlow;
|
}
|
public String getCreateTime() {
|
return createTime;
|
}
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
public String getTypeName() {
|
return typeName;
|
}
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
public String getCreateUserId() {
|
return createUserId;
|
}
|
public void setCreateUserId(String createUserId) {
|
this.createUserId = createUserId;
|
}
|
|
}
|