first commit
This commit is contained in:
@@ -0,0 +1,125 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class Article {
|
||||
private Integer id;
|
||||
|
||||
private String title;
|
||||
|
||||
private String type;
|
||||
|
||||
private String status;
|
||||
|
||||
private String imagesUrl;
|
||||
|
||||
private Integer hit;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
private String content;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title == null ? null : title.trim();
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type == null ? null : type.trim();
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status == null ? null : status.trim();
|
||||
}
|
||||
|
||||
public String getImagesUrl() {
|
||||
return imagesUrl;
|
||||
}
|
||||
|
||||
public void setImagesUrl(String imagesUrl) {
|
||||
this.imagesUrl = imagesUrl == null ? null : imagesUrl.trim();
|
||||
}
|
||||
|
||||
public Integer getHit() {
|
||||
return hit;
|
||||
}
|
||||
|
||||
public void setHit(Integer hit) {
|
||||
this.hit = hit;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content == null ? null : content.trim();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,931 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class ArticleExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public ArticleExample() {
|
||||
oredCriteria = new ArrayList<Criteria>();
|
||||
}
|
||||
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
public String getOrderByClause() {
|
||||
return orderByClause;
|
||||
}
|
||||
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
public boolean isDistinct() {
|
||||
return distinct;
|
||||
}
|
||||
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return oredCriteria;
|
||||
}
|
||||
|
||||
public void or(Criteria criteria) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
public Criteria or() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
oredCriteria.add(criteria);
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public Criteria createCriteria() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
if (oredCriteria.size() == 0) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
oredCriteria.clear();
|
||||
orderByClause = null;
|
||||
distinct = false;
|
||||
}
|
||||
|
||||
protected abstract static class GeneratedCriteria {
|
||||
protected List<Criterion> criteria;
|
||||
|
||||
protected GeneratedCriteria() {
|
||||
super();
|
||||
criteria = new ArrayList<Criterion>();
|
||||
}
|
||||
|
||||
public boolean isValid() {
|
||||
return criteria.size() > 0;
|
||||
}
|
||||
|
||||
public List<Criterion> getAllCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public List<Criterion> getCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition) {
|
||||
if (condition == null) {
|
||||
throw new RuntimeException("Value for condition cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value, String property) {
|
||||
if (value == null) {
|
||||
throw new RuntimeException("Value for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||||
if (value1 == null || value2 == null) {
|
||||
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value1, value2));
|
||||
}
|
||||
|
||||
public Criteria andIdIsNull() {
|
||||
addCriterion("id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIsNotNull() {
|
||||
addCriterion("id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdEqualTo(Integer value) {
|
||||
addCriterion("id =", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotEqualTo(Integer value) {
|
||||
addCriterion("id <>", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThan(Integer value) {
|
||||
addCriterion("id >", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
|
||||
addCriterion("id >=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThan(Integer value) {
|
||||
addCriterion("id <", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThanOrEqualTo(Integer value) {
|
||||
addCriterion("id <=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIn(List<Integer> values) {
|
||||
addCriterion("id in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotIn(List<Integer> values) {
|
||||
addCriterion("id not in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdBetween(Integer value1, Integer value2) {
|
||||
addCriterion("id between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotBetween(Integer value1, Integer value2) {
|
||||
addCriterion("id not between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleIsNull() {
|
||||
addCriterion("title is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleIsNotNull() {
|
||||
addCriterion("title is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleEqualTo(String value) {
|
||||
addCriterion("title =", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleNotEqualTo(String value) {
|
||||
addCriterion("title <>", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleGreaterThan(String value) {
|
||||
addCriterion("title >", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("title >=", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleLessThan(String value) {
|
||||
addCriterion("title <", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleLessThanOrEqualTo(String value) {
|
||||
addCriterion("title <=", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleLike(String value) {
|
||||
addCriterion("title like", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleNotLike(String value) {
|
||||
addCriterion("title not like", value, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleIn(List<String> values) {
|
||||
addCriterion("title in", values, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleNotIn(List<String> values) {
|
||||
addCriterion("title not in", values, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleBetween(String value1, String value2) {
|
||||
addCriterion("title between", value1, value2, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTitleNotBetween(String value1, String value2) {
|
||||
addCriterion("title not between", value1, value2, "title");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIsNull() {
|
||||
addCriterion("type is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIsNotNull() {
|
||||
addCriterion("type is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeEqualTo(String value) {
|
||||
addCriterion("type =", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotEqualTo(String value) {
|
||||
addCriterion("type <>", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeGreaterThan(String value) {
|
||||
addCriterion("type >", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("type >=", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLessThan(String value) {
|
||||
addCriterion("type <", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLessThanOrEqualTo(String value) {
|
||||
addCriterion("type <=", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeLike(String value) {
|
||||
addCriterion("type like", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotLike(String value) {
|
||||
addCriterion("type not like", value, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeIn(List<String> values) {
|
||||
addCriterion("type in", values, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotIn(List<String> values) {
|
||||
addCriterion("type not in", values, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeBetween(String value1, String value2) {
|
||||
addCriterion("type between", value1, value2, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTypeNotBetween(String value1, String value2) {
|
||||
addCriterion("type not between", value1, value2, "type");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIsNull() {
|
||||
addCriterion("status is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIsNotNull() {
|
||||
addCriterion("status is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusEqualTo(String value) {
|
||||
addCriterion("status =", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotEqualTo(String value) {
|
||||
addCriterion("status <>", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusGreaterThan(String value) {
|
||||
addCriterion("status >", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("status >=", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusLessThan(String value) {
|
||||
addCriterion("status <", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusLessThanOrEqualTo(String value) {
|
||||
addCriterion("status <=", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusLike(String value) {
|
||||
addCriterion("status like", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotLike(String value) {
|
||||
addCriterion("status not like", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIn(List<String> values) {
|
||||
addCriterion("status in", values, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotIn(List<String> values) {
|
||||
addCriterion("status not in", values, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusBetween(String value1, String value2) {
|
||||
addCriterion("status between", value1, value2, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotBetween(String value1, String value2) {
|
||||
addCriterion("status not between", value1, value2, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlIsNull() {
|
||||
addCriterion("imagesUrl is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlIsNotNull() {
|
||||
addCriterion("imagesUrl is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlEqualTo(String value) {
|
||||
addCriterion("imagesUrl =", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlNotEqualTo(String value) {
|
||||
addCriterion("imagesUrl <>", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlGreaterThan(String value) {
|
||||
addCriterion("imagesUrl >", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("imagesUrl >=", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlLessThan(String value) {
|
||||
addCriterion("imagesUrl <", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlLessThanOrEqualTo(String value) {
|
||||
addCriterion("imagesUrl <=", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlLike(String value) {
|
||||
addCriterion("imagesUrl like", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlNotLike(String value) {
|
||||
addCriterion("imagesUrl not like", value, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlIn(List<String> values) {
|
||||
addCriterion("imagesUrl in", values, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlNotIn(List<String> values) {
|
||||
addCriterion("imagesUrl not in", values, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlBetween(String value1, String value2) {
|
||||
addCriterion("imagesUrl between", value1, value2, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andImagesUrlNotBetween(String value1, String value2) {
|
||||
addCriterion("imagesUrl not between", value1, value2, "imagesUrl");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitIsNull() {
|
||||
addCriterion("hit is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitIsNotNull() {
|
||||
addCriterion("hit is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitEqualTo(Integer value) {
|
||||
addCriterion("hit =", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitNotEqualTo(Integer value) {
|
||||
addCriterion("hit <>", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitGreaterThan(Integer value) {
|
||||
addCriterion("hit >", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitGreaterThanOrEqualTo(Integer value) {
|
||||
addCriterion("hit >=", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitLessThan(Integer value) {
|
||||
addCriterion("hit <", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitLessThanOrEqualTo(Integer value) {
|
||||
addCriterion("hit <=", value, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitIn(List<Integer> values) {
|
||||
addCriterion("hit in", values, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitNotIn(List<Integer> values) {
|
||||
addCriterion("hit not in", values, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitBetween(Integer value1, Integer value2) {
|
||||
addCriterion("hit between", value1, value2, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andHitNotBetween(Integer value1, Integer value2) {
|
||||
addCriterion("hit not between", value1, value2, "hit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNull() {
|
||||
addCriterion("remark is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNotNull() {
|
||||
addCriterion("remark is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkEqualTo(String value) {
|
||||
addCriterion("remark =", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotEqualTo(String value) {
|
||||
addCriterion("remark <>", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThan(String value) {
|
||||
addCriterion("remark >", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("remark >=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThan(String value) {
|
||||
addCriterion("remark <", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
||||
addCriterion("remark <=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLike(String value) {
|
||||
addCriterion("remark like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotLike(String value) {
|
||||
addCriterion("remark not like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIn(List<String> values) {
|
||||
addCriterion("remark in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotIn(List<String> values) {
|
||||
addCriterion("remark not in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkBetween(String value1, String value2) {
|
||||
addCriterion("remark between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotBetween(String value1, String value2) {
|
||||
addCriterion("remark not between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIsNull() {
|
||||
addCriterion("createBy is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIsNotNull() {
|
||||
addCriterion("createBy is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByEqualTo(String value) {
|
||||
addCriterion("createBy =", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotEqualTo(String value) {
|
||||
addCriterion("createBy <>", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByGreaterThan(String value) {
|
||||
addCriterion("createBy >", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("createBy >=", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLessThan(String value) {
|
||||
addCriterion("createBy <", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLessThanOrEqualTo(String value) {
|
||||
addCriterion("createBy <=", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLike(String value) {
|
||||
addCriterion("createBy like", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotLike(String value) {
|
||||
addCriterion("createBy not like", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIn(List<String> values) {
|
||||
addCriterion("createBy in", values, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotIn(List<String> values) {
|
||||
addCriterion("createBy not in", values, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByBetween(String value1, String value2) {
|
||||
addCriterion("createBy between", value1, value2, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotBetween(String value1, String value2) {
|
||||
addCriterion("createBy not between", value1, value2, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIsNull() {
|
||||
addCriterion("createDate is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIsNotNull() {
|
||||
addCriterion("createDate is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateEqualTo(Date value) {
|
||||
addCriterion("createDate =", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotEqualTo(Date value) {
|
||||
addCriterion("createDate <>", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateGreaterThan(Date value) {
|
||||
addCriterion("createDate >", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("createDate >=", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateLessThan(Date value) {
|
||||
addCriterion("createDate <", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateLessThanOrEqualTo(Date value) {
|
||||
addCriterion("createDate <=", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIn(List<Date> values) {
|
||||
addCriterion("createDate in", values, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotIn(List<Date> values) {
|
||||
addCriterion("createDate not in", values, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateBetween(Date value1, Date value2) {
|
||||
addCriterion("createDate between", value1, value2, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotBetween(Date value1, Date value2) {
|
||||
addCriterion("createDate not between", value1, value2, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIsNull() {
|
||||
addCriterion("updateBy is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIsNotNull() {
|
||||
addCriterion("updateBy is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByEqualTo(String value) {
|
||||
addCriterion("updateBy =", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotEqualTo(String value) {
|
||||
addCriterion("updateBy <>", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByGreaterThan(String value) {
|
||||
addCriterion("updateBy >", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("updateBy >=", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLessThan(String value) {
|
||||
addCriterion("updateBy <", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLessThanOrEqualTo(String value) {
|
||||
addCriterion("updateBy <=", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLike(String value) {
|
||||
addCriterion("updateBy like", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotLike(String value) {
|
||||
addCriterion("updateBy not like", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIn(List<String> values) {
|
||||
addCriterion("updateBy in", values, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotIn(List<String> values) {
|
||||
addCriterion("updateBy not in", values, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByBetween(String value1, String value2) {
|
||||
addCriterion("updateBy between", value1, value2, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotBetween(String value1, String value2) {
|
||||
addCriterion("updateBy not between", value1, value2, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIsNull() {
|
||||
addCriterion("updateDate is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIsNotNull() {
|
||||
addCriterion("updateDate is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateEqualTo(Date value) {
|
||||
addCriterion("updateDate =", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotEqualTo(Date value) {
|
||||
addCriterion("updateDate <>", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateGreaterThan(Date value) {
|
||||
addCriterion("updateDate >", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("updateDate >=", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateLessThan(Date value) {
|
||||
addCriterion("updateDate <", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateLessThanOrEqualTo(Date value) {
|
||||
addCriterion("updateDate <=", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIn(List<Date> values) {
|
||||
addCriterion("updateDate in", values, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotIn(List<Date> values) {
|
||||
addCriterion("updateDate not in", values, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateBetween(Date value1, Date value2) {
|
||||
addCriterion("updateDate between", value1, value2, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotBetween(Date value1, Date value2) {
|
||||
addCriterion("updateDate not between", value1, value2, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criteria extends GeneratedCriteria {
|
||||
|
||||
protected Criteria() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criterion {
|
||||
private String condition;
|
||||
|
||||
private Object value;
|
||||
|
||||
private Object secondValue;
|
||||
|
||||
private boolean noValue;
|
||||
|
||||
private boolean singleValue;
|
||||
|
||||
private boolean betweenValue;
|
||||
|
||||
private boolean listValue;
|
||||
|
||||
private String typeHandler;
|
||||
|
||||
public String getCondition() {
|
||||
return condition;
|
||||
}
|
||||
|
||||
public Object getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public Object getSecondValue() {
|
||||
return secondValue;
|
||||
}
|
||||
|
||||
public boolean isNoValue() {
|
||||
return noValue;
|
||||
}
|
||||
|
||||
public boolean isSingleValue() {
|
||||
return singleValue;
|
||||
}
|
||||
|
||||
public boolean isBetweenValue() {
|
||||
return betweenValue;
|
||||
}
|
||||
|
||||
public boolean isListValue() {
|
||||
return listValue;
|
||||
}
|
||||
|
||||
public String getTypeHandler() {
|
||||
return typeHandler;
|
||||
}
|
||||
|
||||
protected Criterion(String condition) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.typeHandler = null;
|
||||
this.noValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.typeHandler = typeHandler;
|
||||
if (value instanceof List<?>) {
|
||||
this.listValue = true;
|
||||
} else {
|
||||
this.singleValue = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value) {
|
||||
this(condition, value, null);
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.secondValue = secondValue;
|
||||
this.typeHandler = typeHandler;
|
||||
this.betweenValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue) {
|
||||
this(condition, value, secondValue, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 问题反馈
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class Bug {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProduct() {
|
||||
return product;
|
||||
}
|
||||
|
||||
public void setProduct(String product) {
|
||||
this.product = product;
|
||||
}
|
||||
|
||||
public String getBugRemark() {
|
||||
return bugRemark;
|
||||
}
|
||||
|
||||
public void setBugRemark(String bugRemark) {
|
||||
this.bugRemark = bugRemark;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String product;
|
||||
|
||||
private String bugRemark;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CustomerAward {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getNickname() {
|
||||
return nickname;
|
||||
}
|
||||
|
||||
public void setNickname(String nickname) {
|
||||
this.nickname = nickname;
|
||||
}
|
||||
|
||||
public Double getPayPercent() {
|
||||
return payPercent;
|
||||
}
|
||||
|
||||
public void setPayPercent(Double payPercent) {
|
||||
this.payPercent = payPercent;
|
||||
}
|
||||
|
||||
public Double getAskNumber() {
|
||||
return askNumber;
|
||||
}
|
||||
|
||||
public void setAskNumber(Double askNumber) {
|
||||
this.askNumber = askNumber;
|
||||
}
|
||||
|
||||
public Double getCustomerPrice() {
|
||||
return customerPrice;
|
||||
}
|
||||
|
||||
public void setCustomerPrice(Double customerPrice) {
|
||||
this.customerPrice = customerPrice;
|
||||
}
|
||||
|
||||
public Integer getAward() {
|
||||
return award;
|
||||
}
|
||||
|
||||
public void setAward(Integer award) {
|
||||
this.award = award;
|
||||
}
|
||||
|
||||
public String getShopname() {
|
||||
return shopname;
|
||||
}
|
||||
|
||||
public void setShopname(String shopname) {
|
||||
this.shopname = shopname;
|
||||
}
|
||||
|
||||
public String getAwardDate() {
|
||||
return awardDate;
|
||||
}
|
||||
|
||||
public void setAwardDate(String awardDate) {
|
||||
this.awardDate = awardDate;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getCreateTimeBegin() {
|
||||
return createTimeBegin;
|
||||
}
|
||||
|
||||
public void setCreateTimeBegin(String createTimeBegin) {
|
||||
this.createTimeBegin = createTimeBegin;
|
||||
}
|
||||
|
||||
public String getCreateTimeEnd() {
|
||||
return createTimeEnd;
|
||||
}
|
||||
|
||||
public void setCreateTimeEnd(String createTimeEnd) {
|
||||
this.createTimeEnd = createTimeEnd;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String nickname;
|
||||
|
||||
private Double payPercent;
|
||||
|
||||
private Double askNumber;
|
||||
|
||||
private Double customerPrice;
|
||||
|
||||
private Integer award;
|
||||
|
||||
private String shopname;
|
||||
|
||||
private String awardDate;
|
||||
|
||||
private String creator;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String createTimeBegin;
|
||||
|
||||
private String createTimeEnd;
|
||||
}
|
||||
@@ -0,0 +1,241 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 客服数据
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class CustomerData {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getRealname() {
|
||||
return realname;
|
||||
}
|
||||
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
public void setRole(String role) {
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public double getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getProductExplain() {
|
||||
return productExplain;
|
||||
}
|
||||
|
||||
public void setProductExplain(String productExplain) {
|
||||
this.productExplain = productExplain;
|
||||
}
|
||||
|
||||
public String getWangwang() {
|
||||
return wangwang;
|
||||
}
|
||||
|
||||
public void setWangwang(String wangwang) {
|
||||
this.wangwang = wangwang;
|
||||
}
|
||||
|
||||
public String getIsBuy() {
|
||||
return isBuy;
|
||||
}
|
||||
|
||||
public void setIsBuy(String isBuy) {
|
||||
this.isBuy = isBuy;
|
||||
}
|
||||
|
||||
public String getCommentSelf() {
|
||||
return commentSelf;
|
||||
}
|
||||
|
||||
public void setCommentSelf(String commentSelf) {
|
||||
this.commentSelf = commentSelf;
|
||||
}
|
||||
|
||||
public String getCommentManager() {
|
||||
return commentManager;
|
||||
}
|
||||
|
||||
public void setCommentManager(String commentManager) {
|
||||
this.commentManager = commentManager;
|
||||
}
|
||||
|
||||
public Date getCommentDate() {
|
||||
return commentDate;
|
||||
}
|
||||
|
||||
public void setCommentDate(Date commentDate) {
|
||||
this.commentDate = commentDate;
|
||||
}
|
||||
|
||||
public String getIsDelete() {
|
||||
return isDelete;
|
||||
}
|
||||
|
||||
public void setIsDelete(String isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
public Date getCompleteDate() {
|
||||
return completeDate;
|
||||
}
|
||||
|
||||
public void setCompleteDate(Date completeDate) {
|
||||
this.completeDate = completeDate;
|
||||
}
|
||||
|
||||
public String getRoleSearch() {
|
||||
return roleSearch;
|
||||
}
|
||||
|
||||
public void setRoleSearch(String roleSearch) {
|
||||
this.roleSearch = roleSearch;
|
||||
}
|
||||
|
||||
public String[] getRoleArr() {
|
||||
return roleArr;
|
||||
}
|
||||
|
||||
public void setRoleArr(String[] roleArr) {
|
||||
this.roleArr = roleArr;
|
||||
}
|
||||
|
||||
public String getCreateDateBegin() {
|
||||
return createDateBegin;
|
||||
}
|
||||
|
||||
public void setCreateDateBegin(String createDateBegin) {
|
||||
this.createDateBegin = createDateBegin;
|
||||
}
|
||||
|
||||
public String getCreateDateEnd() {
|
||||
return createDateEnd;
|
||||
}
|
||||
|
||||
public void setCreateDateEnd(String createDateEnd) {
|
||||
this.createDateEnd = createDateEnd;
|
||||
}
|
||||
|
||||
// 主键id
|
||||
private Integer id;
|
||||
|
||||
// 用户名
|
||||
private String username;
|
||||
|
||||
// 真实姓名
|
||||
private String realname;
|
||||
|
||||
// 所属店铺/角色
|
||||
private String role;
|
||||
|
||||
// 价格
|
||||
private double price;
|
||||
|
||||
// 产品说明
|
||||
private String productExplain;
|
||||
|
||||
// 客人旺旺
|
||||
private String wangwang;
|
||||
|
||||
// 是否购买
|
||||
private String isBuy;
|
||||
|
||||
// 自评
|
||||
private String commentSelf;
|
||||
|
||||
// 店长评语
|
||||
private String commentManager;
|
||||
|
||||
// 店长评语时间
|
||||
private Date commentDate;
|
||||
|
||||
// 是否删除 0:否 1:是
|
||||
private String isDelete;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
// 完成时间
|
||||
private Date completeDate;
|
||||
|
||||
// 根据角色(部门)查找数据
|
||||
private String roleSearch;
|
||||
|
||||
// 用户所拥有的部门数组
|
||||
private String[] roleArr;
|
||||
|
||||
private String createDateBegin;
|
||||
|
||||
private String createDateEnd;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CustomerTrainContent {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProType() {
|
||||
return proType;
|
||||
}
|
||||
|
||||
public void setProType(String proType) {
|
||||
this.proType = proType;
|
||||
}
|
||||
|
||||
public String getKind() {
|
||||
return kind;
|
||||
}
|
||||
|
||||
public void setKind(String kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String proType;
|
||||
|
||||
private String kind;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String content;
|
||||
|
||||
private String type;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CustomerTrainKindLabel {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProType() {
|
||||
return proType;
|
||||
}
|
||||
|
||||
public void setProType(String proType) {
|
||||
this.proType = proType;
|
||||
}
|
||||
|
||||
public String getKindLabel() {
|
||||
return kindLabel;
|
||||
}
|
||||
|
||||
public void setKindLabel(String kindLabel) {
|
||||
this.kindLabel = kindLabel;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String proType;
|
||||
|
||||
private String kindLabel;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String type;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CustomerTrainProType {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProType() {
|
||||
return proType;
|
||||
}
|
||||
|
||||
public void setProType(String proType) {
|
||||
this.proType = proType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Integer getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String proType;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String type;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 省份快递费
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class ExpressFee {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProvince() {
|
||||
return province;
|
||||
}
|
||||
|
||||
public void setProvince(String province) {
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public String getProTypeValue() {
|
||||
return proTypeValue;
|
||||
}
|
||||
|
||||
public void setProTypeValue(String proTypeValue) {
|
||||
this.proTypeValue = proTypeValue;
|
||||
}
|
||||
|
||||
public String getProTypeLabel() {
|
||||
return proTypeLabel;
|
||||
}
|
||||
|
||||
public void setProTypeLabel(String proTypeLabel) {
|
||||
this.proTypeLabel = proTypeLabel;
|
||||
}
|
||||
|
||||
public double getFirstWeightPrice() {
|
||||
return firstWeightPrice;
|
||||
}
|
||||
|
||||
public void setFirstWeightPrice(double firstWeightPrice) {
|
||||
this.firstWeightPrice = firstWeightPrice;
|
||||
}
|
||||
|
||||
public double getContinuedWeightPrice() {
|
||||
return continuedWeightPrice;
|
||||
}
|
||||
|
||||
public void setContinuedWeightPrice(double continuedWeightPrice) {
|
||||
this.continuedWeightPrice = continuedWeightPrice;
|
||||
}
|
||||
|
||||
public double getStartPrice() {
|
||||
return startPrice;
|
||||
}
|
||||
|
||||
public void setStartPrice(double startPrice) {
|
||||
this.startPrice = startPrice;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String province;
|
||||
|
||||
private String proTypeValue;
|
||||
|
||||
private String proTypeLabel;
|
||||
|
||||
private double firstWeightPrice;
|
||||
|
||||
private double continuedWeightPrice;
|
||||
|
||||
private double startPrice;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class Finance {
|
||||
|
||||
private Integer id;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Date getAddTime() {
|
||||
return addTime;
|
||||
}
|
||||
|
||||
public void setAddTime(Date addTime) {
|
||||
this.addTime = addTime;
|
||||
}
|
||||
|
||||
public String getSupplier() {
|
||||
return supplier;
|
||||
}
|
||||
|
||||
public void setSupplier(String supplier) {
|
||||
this.supplier = supplier;
|
||||
}
|
||||
|
||||
public String getShopname() {
|
||||
return shopname;
|
||||
}
|
||||
|
||||
public void setShopname(String shopname) {
|
||||
this.shopname = shopname;
|
||||
}
|
||||
|
||||
public String getKind() {
|
||||
return kind;
|
||||
}
|
||||
|
||||
public void setKind(String kind) {
|
||||
this.kind = kind;
|
||||
}
|
||||
|
||||
public String getKind2() {
|
||||
return kind2;
|
||||
}
|
||||
|
||||
public void setKind2(String kind2) {
|
||||
this.kind2 = kind2;
|
||||
}
|
||||
|
||||
public String getOrderNumber() {
|
||||
return orderNumber;
|
||||
}
|
||||
|
||||
public void setOrderNumber(String orderNumber) {
|
||||
this.orderNumber = orderNumber;
|
||||
}
|
||||
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
|
||||
public void setFilename(String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public String getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(String count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getZhang() {
|
||||
return zhang;
|
||||
}
|
||||
|
||||
public void setZhang(String zhang) {
|
||||
this.zhang = zhang;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
private Date addTime;
|
||||
|
||||
private String supplier;
|
||||
|
||||
private String shopname;
|
||||
|
||||
private String kind;
|
||||
|
||||
private String kind2;
|
||||
|
||||
private String orderNumber;
|
||||
|
||||
private String filename;
|
||||
|
||||
private String count;
|
||||
|
||||
private String number;
|
||||
|
||||
private String zhang;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String creator;
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 拆分补差价单号
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class FinanceDifference {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String orderNumber;
|
||||
|
||||
private String shopname;
|
||||
|
||||
private String wangwang;
|
||||
|
||||
private Date payTime;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOrderNumber() {
|
||||
return orderNumber;
|
||||
}
|
||||
|
||||
public void setOrderNumber(String orderNumber) {
|
||||
this.orderNumber = orderNumber;
|
||||
}
|
||||
|
||||
public String getShopname() {
|
||||
return shopname;
|
||||
}
|
||||
|
||||
public void setShopname(String shopname) {
|
||||
this.shopname = shopname;
|
||||
}
|
||||
|
||||
public String getWangwang() {
|
||||
return wangwang;
|
||||
}
|
||||
|
||||
public void setWangwang(String wangwang) {
|
||||
this.wangwang = wangwang;
|
||||
}
|
||||
|
||||
public Date getPayTime() {
|
||||
return payTime;
|
||||
}
|
||||
|
||||
public void setPayTime(Date payTime) {
|
||||
this.payTime = payTime;
|
||||
}
|
||||
|
||||
public String getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(String price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getTaobaoStatus() {
|
||||
return taobaoStatus;
|
||||
}
|
||||
|
||||
public void setTaobaoStatus(String taobaoStatus) {
|
||||
this.taobaoStatus = taobaoStatus;
|
||||
}
|
||||
|
||||
public String getOpenOrderNumber() {
|
||||
return openOrderNumber;
|
||||
}
|
||||
|
||||
public void setOpenOrderNumber(String openOrderNumber) {
|
||||
this.openOrderNumber = openOrderNumber;
|
||||
}
|
||||
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
|
||||
public void setFilename(String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
private String price;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String taobaoStatus;
|
||||
|
||||
private String openOrderNumber;
|
||||
|
||||
private String filename;
|
||||
|
||||
private String creator;
|
||||
|
||||
private Date createDate;
|
||||
}
|
||||
@@ -0,0 +1,115 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 提取尺寸
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class FinanceExtract {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOrderNumber() {
|
||||
return orderNumber;
|
||||
}
|
||||
|
||||
public void setOrderNumber(String orderNumber) {
|
||||
this.orderNumber = orderNumber;
|
||||
}
|
||||
|
||||
public String getLength() {
|
||||
return length;
|
||||
}
|
||||
|
||||
public void setLength(String length) {
|
||||
this.length = length;
|
||||
}
|
||||
|
||||
public String getWidth() {
|
||||
return width;
|
||||
}
|
||||
|
||||
public void setWidth(String width) {
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public String getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
public void setHeight(String height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public String getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(String count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
|
||||
public void setFilename(String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String orderNumber;
|
||||
|
||||
private String length;
|
||||
|
||||
private String width;
|
||||
|
||||
private String height;
|
||||
|
||||
private String count;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String filename;
|
||||
|
||||
private String creator;
|
||||
|
||||
private Date createDate;
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 产品知识点;
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class Information {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String content;
|
||||
|
||||
private String type;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 允许登录的IP
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class LoginIp {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String agreeIp;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAgreeIp() {
|
||||
return agreeIp;
|
||||
}
|
||||
|
||||
public void setAgreeIp(String agreeIp) {
|
||||
this.agreeIp = agreeIp;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return CreateDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
CreateDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
private String remark;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date CreateDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 登录日志
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class LoginLog {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Date getLoginTime() {
|
||||
return loginTime;
|
||||
}
|
||||
|
||||
public void setLoginTime(Date loginTime) {
|
||||
this.loginTime = loginTime;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String status;
|
||||
|
||||
private Date loginTime;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 通用的返回的类
|
||||
*/
|
||||
@Data
|
||||
public class Msg {
|
||||
|
||||
// 状态码 200--成功 100--失败 300禁用
|
||||
private int code;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public Map<String, Object> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(Map<String, Object> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
// 提示信息
|
||||
private String msg;
|
||||
|
||||
// 用户要返回给浏览器的数据
|
||||
private Map<String, Object> data = new HashMap<String, Object>();
|
||||
|
||||
public static Msg success() {
|
||||
Msg result = new Msg();
|
||||
result.setCode(200);
|
||||
result.setMsg("成功");
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg success(String msg) {
|
||||
Msg result = new Msg();
|
||||
result.setCode(200);
|
||||
result.setMsg(msg);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg fail() {
|
||||
Msg result = new Msg();
|
||||
result.setCode(100);
|
||||
result.setMsg("失败");
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg fail(String msg) {
|
||||
Msg result = new Msg();
|
||||
result.setCode(100);
|
||||
result.setMsg(msg);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg fail(Integer code, String msg) {
|
||||
Msg result = new Msg();
|
||||
result.setCode(code);
|
||||
result.setMsg(msg);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg isDisable() {
|
||||
Msg result = new Msg();
|
||||
result.setCode(300);
|
||||
result.setMsg("失败");
|
||||
return result;
|
||||
}
|
||||
|
||||
public static Msg isDisable(String msg) {
|
||||
Msg result = new Msg();
|
||||
result.setCode(300);
|
||||
result.setMsg(msg);
|
||||
return result;
|
||||
}
|
||||
|
||||
public Msg add(String key, Object value) {
|
||||
this.getData().put(key, value);
|
||||
return this;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class MyFile {
|
||||
private Integer fileId;
|
||||
|
||||
private String fileName;
|
||||
|
||||
private String filePath;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
public Integer getFileId() {
|
||||
return fileId;
|
||||
}
|
||||
|
||||
public void setFileId(Integer fileId) {
|
||||
this.fileId = fileId;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName == null ? null : fileName.trim();
|
||||
}
|
||||
|
||||
public String getFilePath() {
|
||||
return filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath == null ? null : filePath.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy == null ? null : createBy.trim();
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy == null ? null : updateBy.trim();
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,731 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class MyFileExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public MyFileExample() {
|
||||
oredCriteria = new ArrayList<Criteria>();
|
||||
}
|
||||
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
public String getOrderByClause() {
|
||||
return orderByClause;
|
||||
}
|
||||
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
public boolean isDistinct() {
|
||||
return distinct;
|
||||
}
|
||||
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return oredCriteria;
|
||||
}
|
||||
|
||||
public void or(Criteria criteria) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
public Criteria or() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
oredCriteria.add(criteria);
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public Criteria createCriteria() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
if (oredCriteria.size() == 0) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
oredCriteria.clear();
|
||||
orderByClause = null;
|
||||
distinct = false;
|
||||
}
|
||||
|
||||
protected abstract static class GeneratedCriteria {
|
||||
protected List<Criterion> criteria;
|
||||
|
||||
protected GeneratedCriteria() {
|
||||
super();
|
||||
criteria = new ArrayList<Criterion>();
|
||||
}
|
||||
|
||||
public boolean isValid() {
|
||||
return criteria.size() > 0;
|
||||
}
|
||||
|
||||
public List<Criterion> getAllCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public List<Criterion> getCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition) {
|
||||
if (condition == null) {
|
||||
throw new RuntimeException("Value for condition cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value, String property) {
|
||||
if (value == null) {
|
||||
throw new RuntimeException("Value for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||||
if (value1 == null || value2 == null) {
|
||||
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value1, value2));
|
||||
}
|
||||
|
||||
public Criteria andFileIdIsNull() {
|
||||
addCriterion("fileId is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdIsNotNull() {
|
||||
addCriterion("fileId is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdEqualTo(Integer value) {
|
||||
addCriterion("fileId =", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdNotEqualTo(Integer value) {
|
||||
addCriterion("fileId <>", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdGreaterThan(Integer value) {
|
||||
addCriterion("fileId >", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdGreaterThanOrEqualTo(Integer value) {
|
||||
addCriterion("fileId >=", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdLessThan(Integer value) {
|
||||
addCriterion("fileId <", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdLessThanOrEqualTo(Integer value) {
|
||||
addCriterion("fileId <=", value, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdIn(List<Integer> values) {
|
||||
addCriterion("fileId in", values, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdNotIn(List<Integer> values) {
|
||||
addCriterion("fileId not in", values, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdBetween(Integer value1, Integer value2) {
|
||||
addCriterion("fileId between", value1, value2, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileIdNotBetween(Integer value1, Integer value2) {
|
||||
addCriterion("fileId not between", value1, value2, "fileId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameIsNull() {
|
||||
addCriterion("fileName is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameIsNotNull() {
|
||||
addCriterion("fileName is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameEqualTo(String value) {
|
||||
addCriterion("fileName =", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameNotEqualTo(String value) {
|
||||
addCriterion("fileName <>", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameGreaterThan(String value) {
|
||||
addCriterion("fileName >", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("fileName >=", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameLessThan(String value) {
|
||||
addCriterion("fileName <", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameLessThanOrEqualTo(String value) {
|
||||
addCriterion("fileName <=", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameLike(String value) {
|
||||
addCriterion("fileName like", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameNotLike(String value) {
|
||||
addCriterion("fileName not like", value, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameIn(List<String> values) {
|
||||
addCriterion("fileName in", values, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameNotIn(List<String> values) {
|
||||
addCriterion("fileName not in", values, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameBetween(String value1, String value2) {
|
||||
addCriterion("fileName between", value1, value2, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFileNameNotBetween(String value1, String value2) {
|
||||
addCriterion("fileName not between", value1, value2, "fileName");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathIsNull() {
|
||||
addCriterion("filePath is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathIsNotNull() {
|
||||
addCriterion("filePath is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathEqualTo(String value) {
|
||||
addCriterion("filePath =", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathNotEqualTo(String value) {
|
||||
addCriterion("filePath <>", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathGreaterThan(String value) {
|
||||
addCriterion("filePath >", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("filePath >=", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathLessThan(String value) {
|
||||
addCriterion("filePath <", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathLessThanOrEqualTo(String value) {
|
||||
addCriterion("filePath <=", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathLike(String value) {
|
||||
addCriterion("filePath like", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathNotLike(String value) {
|
||||
addCriterion("filePath not like", value, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathIn(List<String> values) {
|
||||
addCriterion("filePath in", values, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathNotIn(List<String> values) {
|
||||
addCriterion("filePath not in", values, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathBetween(String value1, String value2) {
|
||||
addCriterion("filePath between", value1, value2, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andFilePathNotBetween(String value1, String value2) {
|
||||
addCriterion("filePath not between", value1, value2, "filePath");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNull() {
|
||||
addCriterion("remark is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNotNull() {
|
||||
addCriterion("remark is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkEqualTo(String value) {
|
||||
addCriterion("remark =", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotEqualTo(String value) {
|
||||
addCriterion("remark <>", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThan(String value) {
|
||||
addCriterion("remark >", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("remark >=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThan(String value) {
|
||||
addCriterion("remark <", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
||||
addCriterion("remark <=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLike(String value) {
|
||||
addCriterion("remark like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotLike(String value) {
|
||||
addCriterion("remark not like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIn(List<String> values) {
|
||||
addCriterion("remark in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotIn(List<String> values) {
|
||||
addCriterion("remark not in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkBetween(String value1, String value2) {
|
||||
addCriterion("remark between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotBetween(String value1, String value2) {
|
||||
addCriterion("remark not between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIsNull() {
|
||||
addCriterion("createBy is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIsNotNull() {
|
||||
addCriterion("createBy is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByEqualTo(String value) {
|
||||
addCriterion("createBy =", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotEqualTo(String value) {
|
||||
addCriterion("createBy <>", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByGreaterThan(String value) {
|
||||
addCriterion("createBy >", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("createBy >=", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLessThan(String value) {
|
||||
addCriterion("createBy <", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLessThanOrEqualTo(String value) {
|
||||
addCriterion("createBy <=", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByLike(String value) {
|
||||
addCriterion("createBy like", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotLike(String value) {
|
||||
addCriterion("createBy not like", value, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByIn(List<String> values) {
|
||||
addCriterion("createBy in", values, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotIn(List<String> values) {
|
||||
addCriterion("createBy not in", values, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByBetween(String value1, String value2) {
|
||||
addCriterion("createBy between", value1, value2, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateByNotBetween(String value1, String value2) {
|
||||
addCriterion("createBy not between", value1, value2, "createBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIsNull() {
|
||||
addCriterion("createDate is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIsNotNull() {
|
||||
addCriterion("createDate is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateEqualTo(Date value) {
|
||||
addCriterion("createDate =", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotEqualTo(Date value) {
|
||||
addCriterion("createDate <>", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateGreaterThan(Date value) {
|
||||
addCriterion("createDate >", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("createDate >=", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateLessThan(Date value) {
|
||||
addCriterion("createDate <", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateLessThanOrEqualTo(Date value) {
|
||||
addCriterion("createDate <=", value, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateIn(List<Date> values) {
|
||||
addCriterion("createDate in", values, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotIn(List<Date> values) {
|
||||
addCriterion("createDate not in", values, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateBetween(Date value1, Date value2) {
|
||||
addCriterion("createDate between", value1, value2, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreateDateNotBetween(Date value1, Date value2) {
|
||||
addCriterion("createDate not between", value1, value2, "createDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIsNull() {
|
||||
addCriterion("updateBy is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIsNotNull() {
|
||||
addCriterion("updateBy is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByEqualTo(String value) {
|
||||
addCriterion("updateBy =", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotEqualTo(String value) {
|
||||
addCriterion("updateBy <>", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByGreaterThan(String value) {
|
||||
addCriterion("updateBy >", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("updateBy >=", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLessThan(String value) {
|
||||
addCriterion("updateBy <", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLessThanOrEqualTo(String value) {
|
||||
addCriterion("updateBy <=", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByLike(String value) {
|
||||
addCriterion("updateBy like", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotLike(String value) {
|
||||
addCriterion("updateBy not like", value, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByIn(List<String> values) {
|
||||
addCriterion("updateBy in", values, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotIn(List<String> values) {
|
||||
addCriterion("updateBy not in", values, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByBetween(String value1, String value2) {
|
||||
addCriterion("updateBy between", value1, value2, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateByNotBetween(String value1, String value2) {
|
||||
addCriterion("updateBy not between", value1, value2, "updateBy");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIsNull() {
|
||||
addCriterion("updateDate is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIsNotNull() {
|
||||
addCriterion("updateDate is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateEqualTo(Date value) {
|
||||
addCriterion("updateDate =", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotEqualTo(Date value) {
|
||||
addCriterion("updateDate <>", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateGreaterThan(Date value) {
|
||||
addCriterion("updateDate >", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("updateDate >=", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateLessThan(Date value) {
|
||||
addCriterion("updateDate <", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateLessThanOrEqualTo(Date value) {
|
||||
addCriterion("updateDate <=", value, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateIn(List<Date> values) {
|
||||
addCriterion("updateDate in", values, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotIn(List<Date> values) {
|
||||
addCriterion("updateDate not in", values, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateBetween(Date value1, Date value2) {
|
||||
addCriterion("updateDate between", value1, value2, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateDateNotBetween(Date value1, Date value2) {
|
||||
addCriterion("updateDate not between", value1, value2, "updateDate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criteria extends GeneratedCriteria {
|
||||
|
||||
protected Criteria() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criterion {
|
||||
private String condition;
|
||||
|
||||
private Object value;
|
||||
|
||||
private Object secondValue;
|
||||
|
||||
private boolean noValue;
|
||||
|
||||
private boolean singleValue;
|
||||
|
||||
private boolean betweenValue;
|
||||
|
||||
private boolean listValue;
|
||||
|
||||
private String typeHandler;
|
||||
|
||||
public String getCondition() {
|
||||
return condition;
|
||||
}
|
||||
|
||||
public Object getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public Object getSecondValue() {
|
||||
return secondValue;
|
||||
}
|
||||
|
||||
public boolean isNoValue() {
|
||||
return noValue;
|
||||
}
|
||||
|
||||
public boolean isSingleValue() {
|
||||
return singleValue;
|
||||
}
|
||||
|
||||
public boolean isBetweenValue() {
|
||||
return betweenValue;
|
||||
}
|
||||
|
||||
public boolean isListValue() {
|
||||
return listValue;
|
||||
}
|
||||
|
||||
public String getTypeHandler() {
|
||||
return typeHandler;
|
||||
}
|
||||
|
||||
protected Criterion(String condition) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.typeHandler = null;
|
||||
this.noValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.typeHandler = typeHandler;
|
||||
if (value instanceof List<?>) {
|
||||
this.listValue = true;
|
||||
} else {
|
||||
this.singleValue = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value) {
|
||||
this(condition, value, null);
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.secondValue = secondValue;
|
||||
this.typeHandler = typeHandler;
|
||||
this.betweenValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue) {
|
||||
this(condition, value, secondValue, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,168 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class Product {
|
||||
// id
|
||||
private Integer proId;
|
||||
|
||||
// 长度
|
||||
private Double length;
|
||||
|
||||
// 宽度
|
||||
private Double width;
|
||||
|
||||
// 数量
|
||||
private Integer count;
|
||||
|
||||
// 面积
|
||||
private Double area;
|
||||
|
||||
// 价格
|
||||
private Double price;
|
||||
|
||||
// 价格倍数
|
||||
private Double priceMultiple;
|
||||
|
||||
// 折扣价
|
||||
private Double discountPrice;
|
||||
|
||||
// 底价
|
||||
private Double floorPrice;
|
||||
|
||||
// 重量
|
||||
private String weight;
|
||||
|
||||
// 产品种类
|
||||
private String proTypeValue;
|
||||
|
||||
// 产品种类说明
|
||||
private String proTypeLabel;
|
||||
|
||||
// 产品品种类型
|
||||
private String kindValue;
|
||||
|
||||
// 产品品种类型说明
|
||||
private String kindLabel;
|
||||
|
||||
private String kind1Value;
|
||||
|
||||
private String kind1Label;
|
||||
|
||||
private String kind2Value;
|
||||
|
||||
private String kind2Label;
|
||||
|
||||
private String updater;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
/* ========================= */
|
||||
|
||||
// 尺寸
|
||||
private String size;
|
||||
|
||||
// 工艺
|
||||
private String craft[];
|
||||
|
||||
// 不干胶种类标识--常规/少数量
|
||||
private String stickerKind;
|
||||
// 透明不干胶印白墨
|
||||
private String yinbai;
|
||||
// 款数
|
||||
private Integer number;
|
||||
// 位数
|
||||
private Integer num;
|
||||
// 手提袋/合版封套/房卡套种类标识
|
||||
private String k;
|
||||
// 卡片、金属标种类标识
|
||||
private String kind;
|
||||
// 吊旗300克铜版纸走优惠券价格--标识
|
||||
private String d;
|
||||
// 吊旗300克铜版纸走优惠券价格--0-20位贵10块、20以上5块
|
||||
private Integer p;
|
||||
// 卡片种类标识--常规/少数量
|
||||
private String couponKind;
|
||||
// 自定义尺寸复选开关
|
||||
private boolean switchSize;
|
||||
// 卡片- 特种纸名片 -珠光纸自定义数量
|
||||
private boolean switchCardCount;
|
||||
// 卡片--存酒卡编码类型
|
||||
private String bianma;
|
||||
// 手提袋自定义数量
|
||||
private boolean diyCount;
|
||||
// 模切工艺
|
||||
private String craftQie;
|
||||
// 不干胶模切工艺类型
|
||||
private String craftQieType;
|
||||
// 覆膜/PVC名片印刷
|
||||
private String craftMo;
|
||||
// 凹凸工艺
|
||||
private String aotu;
|
||||
// 烫金工艺
|
||||
private String craftTang;
|
||||
// 0.38PVC亮光异型卡片背胶工艺
|
||||
private String craftJiao;
|
||||
// 海报-双喷布的工艺
|
||||
private String craftBu;
|
||||
// 桌贴印刷工艺
|
||||
private String craftShua;
|
||||
// 印刷烫金工艺长/宽
|
||||
private double lengthTang;
|
||||
private double widthTang;
|
||||
// 宣传单折页折数
|
||||
private Integer zheye;
|
||||
// 宣传单压痕数
|
||||
private Integer yaheng;
|
||||
// 便签本种类标识--联单/便签本
|
||||
private String notePaperKind;
|
||||
// 画册P数
|
||||
private Integer pcount;
|
||||
// 画册装订方式
|
||||
private String kind3Value;
|
||||
// 角色标识--用于不同店铺不同价格
|
||||
private String role;
|
||||
// UV转印贴显示信息(出货时间)
|
||||
private String Msg;
|
||||
// 报价给哪个客户旺旺号
|
||||
private String wangwang;
|
||||
// 吊牌600克第二尺寸
|
||||
private String size1;
|
||||
// 服装吊牌绳子
|
||||
private String craftSheng;
|
||||
// 合板封套长/宽/舌头(高)
|
||||
private double lengthSize;
|
||||
private double widthSize;
|
||||
private double heightSize;
|
||||
private String craftTiao;//条幅工艺
|
||||
|
||||
// 印艺接口参数
|
||||
private Double xx;// 长度
|
||||
private Double yy;// 宽度
|
||||
private Integer shuliang;// 数量
|
||||
private Integer pinzhong;// 款数
|
||||
private String cailiao;// 种类
|
||||
private String fm;// 覆膜
|
||||
private String fmType;//卡片贴膜类型 0贴膜1配膜
|
||||
private Integer awards;//奖项
|
||||
private Integer stickNum;//几处贴膜
|
||||
|
||||
private String switchz3Size;//种子纸是否自定义尺寸
|
||||
private String z3type;//种子纸是否自定义尺寸
|
||||
|
||||
private String toothpick_size;//牙签规格
|
||||
|
||||
private String craftPai;
|
||||
|
||||
//内部模切参数
|
||||
private Integer n_mq_num;
|
||||
private String n_mq_size;
|
||||
//位置数,颜色数
|
||||
private Integer po_number;
|
||||
private Integer co_number;
|
||||
private Integer shen_type;
|
||||
private String shen_color;
|
||||
}
|
||||
@@ -0,0 +1,197 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ProductImg {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProTypeLabel() {
|
||||
return proTypeLabel;
|
||||
}
|
||||
|
||||
public void setProTypeLabel(String proTypeLabel) {
|
||||
this.proTypeLabel = proTypeLabel;
|
||||
}
|
||||
|
||||
public String getProTypeValue() {
|
||||
return proTypeValue;
|
||||
}
|
||||
|
||||
public void setProTypeValue(String proTypeValue) {
|
||||
this.proTypeValue = proTypeValue;
|
||||
}
|
||||
|
||||
public String getKindValue() {
|
||||
return kindValue;
|
||||
}
|
||||
|
||||
public void setKindValue(String kindValue) {
|
||||
this.kindValue = kindValue;
|
||||
}
|
||||
|
||||
public String getKindLabel() {
|
||||
return kindLabel;
|
||||
}
|
||||
|
||||
public void setKindLabel(String kindLabel) {
|
||||
this.kindLabel = kindLabel;
|
||||
}
|
||||
|
||||
public String getKind2Value() {
|
||||
return kind2Value;
|
||||
}
|
||||
|
||||
public void setKind2Value(String kind2Value) {
|
||||
this.kind2Value = kind2Value;
|
||||
}
|
||||
|
||||
public String getKind2Label() {
|
||||
return kind2Label;
|
||||
}
|
||||
|
||||
public void setKind2Label(String kind2Label) {
|
||||
this.kind2Label = kind2Label;
|
||||
}
|
||||
|
||||
public String getImgUrl() {
|
||||
return imgUrl;
|
||||
}
|
||||
|
||||
public void setImgUrl(String imgUrl) {
|
||||
this.imgUrl = imgUrl;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
|
||||
public void setFilename(String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public Long getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
public void setCreator(Long creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public Long getUpdater() {
|
||||
return updater;
|
||||
}
|
||||
|
||||
public void setUpdater(Long updater) {
|
||||
this.updater = updater;
|
||||
}
|
||||
|
||||
public String getImgWidth() {
|
||||
return imgWidth;
|
||||
}
|
||||
|
||||
public void setImgWidth(String imgWidth) {
|
||||
this.imgWidth = imgWidth;
|
||||
}
|
||||
|
||||
public String getImgHeight() {
|
||||
return imgHeight;
|
||||
}
|
||||
|
||||
public void setImgHeight(String imgHeight) {
|
||||
this.imgHeight = imgHeight;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
private String proTypeLabel;
|
||||
|
||||
/**
|
||||
* 名称编号
|
||||
*/
|
||||
private String proTypeValue;
|
||||
|
||||
/**
|
||||
* 产品种类1
|
||||
*/
|
||||
private String kindValue;
|
||||
|
||||
/**
|
||||
* 产品种类说明1
|
||||
*/
|
||||
private String kindLabel;
|
||||
|
||||
/**
|
||||
* 产品种类2
|
||||
*/
|
||||
private String kind2Value;
|
||||
|
||||
/**
|
||||
* 产品种类说明2
|
||||
*/
|
||||
private String kind2Label;
|
||||
|
||||
/**
|
||||
* 图片地址
|
||||
*/
|
||||
private String imgUrl;
|
||||
|
||||
/**
|
||||
* 产品说明
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 文件名字
|
||||
*/
|
||||
private String filename;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private Long creator;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private Long updater;
|
||||
|
||||
private String imgWidth;
|
||||
|
||||
private String imgHeight;
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 产品知识测试表
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class Question {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getQuestion() {
|
||||
return question;
|
||||
}
|
||||
|
||||
public void setQuestion(String question) {
|
||||
this.question = question;
|
||||
}
|
||||
|
||||
public String getAnswer() {
|
||||
return answer;
|
||||
}
|
||||
|
||||
public void setAnswer(String answer) {
|
||||
this.answer = answer;
|
||||
}
|
||||
|
||||
public String getAnswer1() {
|
||||
return answer1;
|
||||
}
|
||||
|
||||
public void setAnswer1(String answer1) {
|
||||
this.answer1 = answer1;
|
||||
}
|
||||
|
||||
public String getAnswer2() {
|
||||
return answer2;
|
||||
}
|
||||
|
||||
public void setAnswer2(String answer2) {
|
||||
this.answer2 = answer2;
|
||||
}
|
||||
|
||||
public String getAnswer3() {
|
||||
return answer3;
|
||||
}
|
||||
|
||||
public void setAnswer3(String answer3) {
|
||||
this.answer3 = answer3;
|
||||
}
|
||||
|
||||
public String getAnswer4() {
|
||||
return answer4;
|
||||
}
|
||||
|
||||
public void setAnswer4(String answer4) {
|
||||
this.answer4 = answer4;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getAnsCount() {
|
||||
return ansCount;
|
||||
}
|
||||
|
||||
public void setAnsCount(Integer ansCount) {
|
||||
this.ansCount = ansCount;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String question;
|
||||
|
||||
private String answer;
|
||||
|
||||
private String answer1;
|
||||
|
||||
private String answer2;
|
||||
|
||||
private String answer3;
|
||||
|
||||
private String answer4;
|
||||
|
||||
// 题目类型 0:单选 1:多选
|
||||
private String type;
|
||||
|
||||
private Integer ansCount;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
}
|
||||
@@ -0,0 +1,429 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 操作日志--供新增客服数据,只保留几天数据
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class QuoteData {
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getRemarkJudge() {
|
||||
return remarkJudge;
|
||||
}
|
||||
|
||||
public void setRemarkJudge(String remarkJudge) {
|
||||
this.remarkJudge = remarkJudge;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
public void setRole(String role) {
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getRealname() {
|
||||
return realname;
|
||||
}
|
||||
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
public String getShopname() {
|
||||
return shopname;
|
||||
}
|
||||
|
||||
public void setShopname(String shopname) {
|
||||
this.shopname = shopname;
|
||||
}
|
||||
|
||||
public Double getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(Double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public Date getQuoteTime() {
|
||||
return quoteTime;
|
||||
}
|
||||
|
||||
public void setQuoteTime(Date quoteTime) {
|
||||
this.quoteTime = quoteTime;
|
||||
}
|
||||
|
||||
public String getWangwang() {
|
||||
return wangwang;
|
||||
}
|
||||
|
||||
public void setWangwang(String wangwang) {
|
||||
this.wangwang = wangwang;
|
||||
}
|
||||
|
||||
public String getIsBuy() {
|
||||
return isBuy;
|
||||
}
|
||||
|
||||
public void setIsBuy(String isBuy) {
|
||||
this.isBuy = isBuy;
|
||||
}
|
||||
|
||||
public Date getBuyDate() {
|
||||
return buyDate;
|
||||
}
|
||||
|
||||
public void setBuyDate(Date buyDate) {
|
||||
this.buyDate = buyDate;
|
||||
}
|
||||
|
||||
public String getIsBuyToDay() {
|
||||
return isBuyToDay;
|
||||
}
|
||||
|
||||
public void setIsBuyToDay(String isBuyToDay) {
|
||||
this.isBuyToDay = isBuyToDay;
|
||||
}
|
||||
|
||||
public Date getIsBuyToDayDate() {
|
||||
return isBuyToDayDate;
|
||||
}
|
||||
|
||||
public void setIsBuyToDayDate(Date isBuyToDayDate) {
|
||||
this.isBuyToDayDate = isBuyToDayDate;
|
||||
}
|
||||
|
||||
public String getCommentSelf() {
|
||||
return commentSelf;
|
||||
}
|
||||
|
||||
public void setCommentSelf(String commentSelf) {
|
||||
this.commentSelf = commentSelf;
|
||||
}
|
||||
|
||||
public Date getCommentSelfDate() {
|
||||
return commentSelfDate;
|
||||
}
|
||||
|
||||
public void setCommentSelfDate(Date commentSelfDate) {
|
||||
this.commentSelfDate = commentSelfDate;
|
||||
}
|
||||
|
||||
public String getCommentManager() {
|
||||
return commentManager;
|
||||
}
|
||||
|
||||
public void setCommentManager(String commentManager) {
|
||||
this.commentManager = commentManager;
|
||||
}
|
||||
|
||||
public Date getCommentManagerDate() {
|
||||
return commentManagerDate;
|
||||
}
|
||||
|
||||
public void setCommentManagerDate(Date commentManagerDate) {
|
||||
this.commentManagerDate = commentManagerDate;
|
||||
}
|
||||
|
||||
public String getIsSelect() {
|
||||
return isSelect;
|
||||
}
|
||||
|
||||
public void setIsSelect(String isSelect) {
|
||||
this.isSelect = isSelect;
|
||||
}
|
||||
|
||||
public Date getSelectDate() {
|
||||
return selectDate;
|
||||
}
|
||||
|
||||
public void setSelectDate(Date selectDate) {
|
||||
this.selectDate = selectDate;
|
||||
}
|
||||
|
||||
public String getIsFillIn() {
|
||||
return isFillIn;
|
||||
}
|
||||
|
||||
public void setIsFillIn(String isFillIn) {
|
||||
this.isFillIn = isFillIn;
|
||||
}
|
||||
|
||||
public Date getFillInDate() {
|
||||
return fillInDate;
|
||||
}
|
||||
|
||||
public void setFillInDate(Date fillInDate) {
|
||||
this.fillInDate = fillInDate;
|
||||
}
|
||||
|
||||
public String getProTypeLabel() {
|
||||
return proTypeLabel;
|
||||
}
|
||||
|
||||
public void setProTypeLabel(String proTypeLabel) {
|
||||
this.proTypeLabel = proTypeLabel;
|
||||
}
|
||||
|
||||
public Double getBuyPrice() {
|
||||
return buyPrice;
|
||||
}
|
||||
|
||||
public void setBuyPrice(Double buyPrice) {
|
||||
this.buyPrice = buyPrice;
|
||||
}
|
||||
|
||||
public String getOrderNumber() {
|
||||
return orderNumber;
|
||||
}
|
||||
|
||||
public void setOrderNumber(String orderNumber) {
|
||||
this.orderNumber = orderNumber;
|
||||
}
|
||||
|
||||
public String getRoleSearch() {
|
||||
return roleSearch;
|
||||
}
|
||||
|
||||
public void setRoleSearch(String roleSearch) {
|
||||
this.roleSearch = roleSearch;
|
||||
}
|
||||
|
||||
public String[] getRoleArr() {
|
||||
return roleArr;
|
||||
}
|
||||
|
||||
public void setRoleArr(String[] roleArr) {
|
||||
this.roleArr = roleArr;
|
||||
}
|
||||
|
||||
public String[] getRoleSearchArr() {
|
||||
return roleSearchArr;
|
||||
}
|
||||
|
||||
public void setRoleSearchArr(String[] roleSearchArr) {
|
||||
this.roleSearchArr = roleSearchArr;
|
||||
}
|
||||
|
||||
public String getQuoteTimeBegin() {
|
||||
return quoteTimeBegin;
|
||||
}
|
||||
|
||||
public void setQuoteTimeBegin(String quoteTimeBegin) {
|
||||
this.quoteTimeBegin = quoteTimeBegin;
|
||||
}
|
||||
|
||||
public String getQuoteTimeEnd() {
|
||||
return quoteTimeEnd;
|
||||
}
|
||||
|
||||
public void setQuoteTimeEnd(String quoteTimeEnd) {
|
||||
this.quoteTimeEnd = quoteTimeEnd;
|
||||
}
|
||||
|
||||
public Double getAllData() {
|
||||
return allData;
|
||||
}
|
||||
|
||||
public void setAllData(Double allData) {
|
||||
this.allData = allData;
|
||||
}
|
||||
|
||||
public Double getAllNotBuy() {
|
||||
return allNotBuy;
|
||||
}
|
||||
|
||||
public void setAllNotBuy(Double allNotBuy) {
|
||||
this.allNotBuy = allNotBuy;
|
||||
}
|
||||
|
||||
public Double getAllBuy() {
|
||||
return allBuy;
|
||||
}
|
||||
|
||||
public void setAllBuy(Double allBuy) {
|
||||
this.allBuy = allBuy;
|
||||
}
|
||||
|
||||
public Double getTodayBuy() {
|
||||
return todayBuy;
|
||||
}
|
||||
|
||||
public void setTodayBuy(Double todayBuy) {
|
||||
this.todayBuy = todayBuy;
|
||||
}
|
||||
|
||||
public Double getNotTodayBuy() {
|
||||
return notTodayBuy;
|
||||
}
|
||||
|
||||
public void setNotTodayBuy(Double notTodayBuy) {
|
||||
this.notTodayBuy = notTodayBuy;
|
||||
}
|
||||
|
||||
public Double getAllBuyPrice() {
|
||||
return allBuyPrice;
|
||||
}
|
||||
|
||||
public void setAllBuyPrice(Double allBuyPrice) {
|
||||
this.allBuyPrice = allBuyPrice;
|
||||
}
|
||||
|
||||
public Double getTodayBuyPrice() {
|
||||
return todayBuyPrice;
|
||||
}
|
||||
|
||||
public void setTodayBuyPrice(Double todayBuyPrice) {
|
||||
this.todayBuyPrice = todayBuyPrice;
|
||||
}
|
||||
|
||||
public Double getNotTodayBuyPrice() {
|
||||
return notTodayBuyPrice;
|
||||
}
|
||||
|
||||
public void setNotTodayBuyPrice(Double notTodayBuyPrice) {
|
||||
this.notTodayBuyPrice = notTodayBuyPrice;
|
||||
}
|
||||
|
||||
public Double getAllBuyPercentage() {
|
||||
return allBuyPercentage;
|
||||
}
|
||||
|
||||
public void setAllBuyPercentage(Double allBuyPercentage) {
|
||||
this.allBuyPercentage = allBuyPercentage;
|
||||
}
|
||||
|
||||
public String getIsSelfShop() {
|
||||
return isSelfShop;
|
||||
}
|
||||
|
||||
public void setIsSelfShop(String isSelfShop) {
|
||||
this.isSelfShop = isSelfShop;
|
||||
}
|
||||
|
||||
public String getByProTypeLabel() {
|
||||
return byProTypeLabel;
|
||||
}
|
||||
|
||||
public void setByProTypeLabel(String byProTypeLabel) {
|
||||
this.byProTypeLabel = byProTypeLabel;
|
||||
}
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String remarkJudge;
|
||||
|
||||
private String role;
|
||||
|
||||
private String username;
|
||||
|
||||
private String realname;
|
||||
|
||||
private String shopname;
|
||||
|
||||
private Double price;
|
||||
|
||||
private Date quoteTime;
|
||||
|
||||
private String wangwang;
|
||||
|
||||
private String isBuy;
|
||||
|
||||
private Date buyDate;
|
||||
|
||||
private String isBuyToDay;
|
||||
|
||||
private Date isBuyToDayDate;
|
||||
|
||||
private String commentSelf;
|
||||
|
||||
private Date commentSelfDate;
|
||||
|
||||
private String commentManager;
|
||||
|
||||
private Date commentManagerDate;
|
||||
|
||||
private String isSelect;
|
||||
|
||||
private Date selectDate;
|
||||
|
||||
private String isFillIn;
|
||||
|
||||
private Date fillInDate;
|
||||
|
||||
private String proTypeLabel;
|
||||
|
||||
private Double buyPrice;
|
||||
|
||||
private String orderNumber;
|
||||
|
||||
/*================*/
|
||||
|
||||
// 根据角色(部门)查找数据
|
||||
private String roleSearch;
|
||||
|
||||
// 用户所拥有的部门数组
|
||||
private String[] roleArr;
|
||||
|
||||
private String[] roleSearchArr;
|
||||
|
||||
private String quoteTimeBegin;
|
||||
|
||||
private String quoteTimeEnd;
|
||||
|
||||
private Double allData;
|
||||
|
||||
private Double allNotBuy;
|
||||
|
||||
private Double allBuy;
|
||||
|
||||
private Double todayBuy;
|
||||
|
||||
private Double notTodayBuy;
|
||||
|
||||
private Double allBuyPrice;
|
||||
|
||||
private Double todayBuyPrice;
|
||||
|
||||
private Double notTodayBuyPrice;
|
||||
|
||||
private Double allBuyPercentage;
|
||||
|
||||
private String isSelfShop;
|
||||
|
||||
private String byProTypeLabel;
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 报价操作日志
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class QuoteLog {
|
||||
|
||||
public Integer getQuoteId() {
|
||||
return quoteId;
|
||||
}
|
||||
|
||||
public void setQuoteId(Integer quoteId) {
|
||||
this.quoteId = quoteId;
|
||||
}
|
||||
|
||||
public Date getQuoteTime() {
|
||||
return quoteTime;
|
||||
}
|
||||
|
||||
public void setQuoteTime(Date quoteTime) {
|
||||
this.quoteTime = quoteTime;
|
||||
}
|
||||
|
||||
public String getQuoteIp() {
|
||||
return quoteIp;
|
||||
}
|
||||
|
||||
public void setQuoteIp(String quoteIp) {
|
||||
this.quoteIp = quoteIp;
|
||||
}
|
||||
|
||||
public String getOs() {
|
||||
return os;
|
||||
}
|
||||
|
||||
public void setOs(String os) {
|
||||
this.os = os;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getRealname() {
|
||||
return realname;
|
||||
}
|
||||
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
public String getBrower() {
|
||||
return brower;
|
||||
}
|
||||
|
||||
public void setBrower(String brower) {
|
||||
this.brower = brower;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getShopname() {
|
||||
return Shopname;
|
||||
}
|
||||
|
||||
public void setShopname(String shopname) {
|
||||
Shopname = shopname;
|
||||
}
|
||||
|
||||
public Double getPrice() {
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice(Double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getQuoteTimeBegin() {
|
||||
return quoteTimeBegin;
|
||||
}
|
||||
|
||||
public void setQuoteTimeBegin(String quoteTimeBegin) {
|
||||
this.quoteTimeBegin = quoteTimeBegin;
|
||||
}
|
||||
|
||||
public String getQuoteTimeEnd() {
|
||||
return quoteTimeEnd;
|
||||
}
|
||||
|
||||
public void setQuoteTimeEnd(String quoteTimeEnd) {
|
||||
this.quoteTimeEnd = quoteTimeEnd;
|
||||
}
|
||||
|
||||
private Integer quoteId;
|
||||
|
||||
private Date quoteTime;
|
||||
|
||||
private String quoteIp;
|
||||
|
||||
private String os;
|
||||
|
||||
private String username;
|
||||
|
||||
private String realname;
|
||||
|
||||
private String brower;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String Shopname;
|
||||
|
||||
private Double price;
|
||||
|
||||
private String quoteTimeBegin;
|
||||
|
||||
private String quoteTimeEnd;
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SysDictProduct {
|
||||
|
||||
public Integer getProId() {
|
||||
return proId;
|
||||
}
|
||||
|
||||
public void setProId(Integer proId) {
|
||||
this.proId = proId;
|
||||
}
|
||||
|
||||
public String getKindValue() {
|
||||
return kindValue;
|
||||
}
|
||||
|
||||
public void setKindValue(String kindValue) {
|
||||
this.kindValue = kindValue;
|
||||
}
|
||||
|
||||
public String getKindLabel() {
|
||||
return kindLabel;
|
||||
}
|
||||
|
||||
public void setKindLabel(String kindLabel) {
|
||||
this.kindLabel = kindLabel;
|
||||
}
|
||||
|
||||
public String getKind2Value() {
|
||||
return kind2Value;
|
||||
}
|
||||
|
||||
public void setKind2Value(String kind2Value) {
|
||||
this.kind2Value = kind2Value;
|
||||
}
|
||||
|
||||
public String getKind2Label() {
|
||||
return kind2Label;
|
||||
}
|
||||
|
||||
public void setKind2Label(String kind2Label) {
|
||||
this.kind2Label = kind2Label;
|
||||
}
|
||||
|
||||
public Double getKindPrice() {
|
||||
return kindPrice;
|
||||
}
|
||||
|
||||
public void setKindPrice(Double kindPrice) {
|
||||
this.kindPrice = kindPrice;
|
||||
}
|
||||
|
||||
public Double getDiscountPrice() {
|
||||
return discountPrice;
|
||||
}
|
||||
|
||||
public void setDiscountPrice(Double discountPrice) {
|
||||
this.discountPrice = discountPrice;
|
||||
}
|
||||
|
||||
public Double getFloorPrice() {
|
||||
return floorPrice;
|
||||
}
|
||||
|
||||
public void setFloorPrice(Double floorPrice) {
|
||||
this.floorPrice = floorPrice;
|
||||
}
|
||||
|
||||
public Double getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(Double weight) {
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public String getProTypeValue() {
|
||||
return proTypeValue;
|
||||
}
|
||||
|
||||
public void setProTypeValue(String proTypeValue) {
|
||||
this.proTypeValue = proTypeValue;
|
||||
}
|
||||
|
||||
public String getProTypeLabel() {
|
||||
return proTypeLabel;
|
||||
}
|
||||
|
||||
public void setProTypeLabel(String proTypeLabel) {
|
||||
this.proTypeLabel = proTypeLabel;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer proId;
|
||||
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private String kindValue;
|
||||
|
||||
/**
|
||||
* 种类名称
|
||||
*/
|
||||
private String kindLabel;
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private String kind2Value;
|
||||
|
||||
/**
|
||||
* 种类名称
|
||||
*/
|
||||
private String kind2Label;
|
||||
/**
|
||||
* 报价单价
|
||||
*/
|
||||
private Double kindPrice;
|
||||
|
||||
/**
|
||||
* 打折报价
|
||||
*/
|
||||
private Double discountPrice;
|
||||
|
||||
/**
|
||||
* 跳楼价报价
|
||||
*/
|
||||
private Double floorPrice;
|
||||
|
||||
/**
|
||||
* 重量
|
||||
*/
|
||||
private Double weight;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String proTypeValue;
|
||||
|
||||
/**
|
||||
* 产品类型
|
||||
*/
|
||||
private String proTypeLabel;
|
||||
|
||||
/**
|
||||
* 说明
|
||||
*/
|
||||
private String remark;
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SysDictSearchPro {
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getProTypeLabel() {
|
||||
return proTypeLabel;
|
||||
}
|
||||
public void setProTypeLabel(String proTypeLabel) {
|
||||
this.proTypeLabel = proTypeLabel;
|
||||
}
|
||||
public String getLikeProTypeLabel() {
|
||||
return likeProTypeLabel;
|
||||
}
|
||||
public void setLikeProTypeLabel(String likeProTypeLabel) {
|
||||
this.likeProTypeLabel = likeProTypeLabel;
|
||||
}
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
public String getUpdater() {
|
||||
return updater;
|
||||
}
|
||||
public void setUpdater(String updater) {
|
||||
this.updater = updater;
|
||||
}
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
private String proTypeLabel;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
private String likeProTypeLabel;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 图片地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String creator;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private String updater;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date updateDate;
|
||||
}
|
||||
@@ -0,0 +1,145 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SysPermission implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Integer perId;
|
||||
private String perName;
|
||||
private String url;
|
||||
private String type;
|
||||
private String perCode;
|
||||
private String perIcon;
|
||||
private Integer parentId;
|
||||
public Integer getPerId() {
|
||||
return perId;
|
||||
}
|
||||
|
||||
public void setPerId(Integer perId) {
|
||||
this.perId = perId;
|
||||
}
|
||||
|
||||
public String getPerName() {
|
||||
return perName;
|
||||
}
|
||||
|
||||
public void setPerName(String perName) {
|
||||
this.perName = perName;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getPerCode() {
|
||||
return perCode;
|
||||
}
|
||||
|
||||
public void setPerCode(String perCode) {
|
||||
this.perCode = perCode;
|
||||
}
|
||||
|
||||
public String getPerIcon() {
|
||||
return perIcon;
|
||||
}
|
||||
|
||||
public void setPerIcon(String perIcon) {
|
||||
this.perIcon = perIcon;
|
||||
}
|
||||
|
||||
public Integer getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
|
||||
public void setParentId(Integer parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
|
||||
public String getThirdOrderName() {
|
||||
return thirdOrderName;
|
||||
}
|
||||
|
||||
public void setThirdOrderName(String thirdOrderName) {
|
||||
this.thirdOrderName = thirdOrderName;
|
||||
}
|
||||
|
||||
public Integer getThirdParentId() {
|
||||
return thirdParentId;
|
||||
}
|
||||
|
||||
public void setThirdParentId(Integer thirdParentId) {
|
||||
this.thirdParentId = thirdParentId;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public boolean isOpen() {
|
||||
return open;
|
||||
}
|
||||
|
||||
public void setOpen(boolean open) {
|
||||
this.open = open;
|
||||
}
|
||||
|
||||
public List<SysPermission> getChildren() {
|
||||
return children;
|
||||
}
|
||||
|
||||
public void setChildren(List<SysPermission> children) {
|
||||
this.children = children;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
|
||||
private String orderNo;
|
||||
private String thirdOrderName;
|
||||
private Integer thirdParentId;
|
||||
private String createBy;
|
||||
private Date createDate;
|
||||
|
||||
private boolean open = true;
|
||||
|
||||
private List<SysPermission> children; // 子权限集合
|
||||
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 角色
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class SysRole {
|
||||
private Integer roleId;
|
||||
|
||||
private String roleName;
|
||||
|
||||
private String isRegist;
|
||||
|
||||
private String remark;
|
||||
|
||||
public Integer getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Integer roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getRoleName() {
|
||||
return roleName;
|
||||
}
|
||||
|
||||
public void setRoleName(String roleName) {
|
||||
this.roleName = roleName;
|
||||
}
|
||||
|
||||
public String getIsRegist() {
|
||||
return isRegist;
|
||||
}
|
||||
|
||||
public void setIsRegist(String isRegist) {
|
||||
this.isRegist = isRegist;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,208 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 用户
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class SysUser {
|
||||
private Integer userId;
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getRealname() {
|
||||
return realname;
|
||||
}
|
||||
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getUserStatus() {
|
||||
return userStatus;
|
||||
}
|
||||
|
||||
public void setUserStatus(String userStatus) {
|
||||
this.userStatus = userStatus;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
public void setRole(String role) {
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public String getSysStatus() {
|
||||
return sysStatus;
|
||||
}
|
||||
|
||||
public void setSysStatus(String sysStatus) {
|
||||
this.sysStatus = sysStatus;
|
||||
}
|
||||
|
||||
public String getReadLogStatus() {
|
||||
return readLogStatus;
|
||||
}
|
||||
|
||||
public void setReadLogStatus(String readLogStatus) {
|
||||
this.readLogStatus = readLogStatus;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getUpdateBy() {
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy) {
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateDate() {
|
||||
return updateDate;
|
||||
}
|
||||
|
||||
public void setUpdateDate(Date updateDate) {
|
||||
this.updateDate = updateDate;
|
||||
}
|
||||
|
||||
public String getBirthDay() {
|
||||
return birthDay;
|
||||
}
|
||||
|
||||
public void setBirthDay(String birthDay) {
|
||||
this.birthDay = birthDay;
|
||||
}
|
||||
|
||||
public String getBirthType() {
|
||||
return birthType;
|
||||
}
|
||||
|
||||
public void setBirthType(String birthType) {
|
||||
this.birthType = birthType;
|
||||
}
|
||||
|
||||
public Integer getIsBirthDay() {
|
||||
return isBirthDay;
|
||||
}
|
||||
|
||||
public void setIsBirthDay(Integer isBirthDay) {
|
||||
this.isBirthDay = isBirthDay;
|
||||
}
|
||||
|
||||
public String getEntryDate() {
|
||||
return entryDate;
|
||||
}
|
||||
|
||||
public void setEntryDate(String entryDate) {
|
||||
this.entryDate = entryDate;
|
||||
}
|
||||
|
||||
public String getNeedIp() {
|
||||
return needIp;
|
||||
}
|
||||
|
||||
public void setNeedIp(String needIp) {
|
||||
this.needIp = needIp;
|
||||
}
|
||||
|
||||
public String getRoleSearch() {
|
||||
return roleSearch;
|
||||
}
|
||||
|
||||
public void setRoleSearch(String roleSearch) {
|
||||
this.roleSearch = roleSearch;
|
||||
}
|
||||
|
||||
public String[] getRoleArr() {
|
||||
return roleArr;
|
||||
}
|
||||
|
||||
public void setRoleArr(String[] roleArr) {
|
||||
this.roleArr = roleArr;
|
||||
}
|
||||
|
||||
private String realname;
|
||||
|
||||
private String username;
|
||||
|
||||
private String password;
|
||||
|
||||
private String userStatus;
|
||||
|
||||
private String role;
|
||||
|
||||
private String sysStatus;
|
||||
|
||||
private String readLogStatus;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date createDate;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
private Date updateDate;
|
||||
|
||||
private String birthDay;
|
||||
|
||||
private String birthType;
|
||||
|
||||
private Integer isBirthDay;
|
||||
|
||||
private String entryDate;
|
||||
|
||||
// 是否需要判断IP 0:否 1:是
|
||||
private String needIp;
|
||||
|
||||
// 根据角色查找用户
|
||||
private String roleSearch;
|
||||
|
||||
// 用户所拥有角色数组
|
||||
private String[] roleArr;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
package lingtao.net.bean;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 更新日志
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
public class UpdateLog {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String content;
|
||||
|
||||
private Date addTime;
|
||||
|
||||
private String createBy;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public Date getAddTime() {
|
||||
return addTime;
|
||||
}
|
||||
|
||||
public void setAddTime(Date addTime) {
|
||||
this.addTime = addTime;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(Date createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getAddTimeStr() {
|
||||
return addTimeStr;
|
||||
}
|
||||
|
||||
public void setAddTimeStr(String addTimeStr) {
|
||||
this.addTimeStr = addTimeStr;
|
||||
}
|
||||
|
||||
public String getAdd_time_begin() {
|
||||
return add_time_begin;
|
||||
}
|
||||
|
||||
public void setAdd_time_begin(String add_time_begin) {
|
||||
this.add_time_begin = add_time_begin;
|
||||
}
|
||||
|
||||
public String getAdd_time_end() {
|
||||
return add_time_end;
|
||||
}
|
||||
|
||||
public void setAdd_time_end(String add_time_end) {
|
||||
this.add_time_end = add_time_end;
|
||||
}
|
||||
|
||||
private Date createDate;
|
||||
|
||||
/* ================= */
|
||||
|
||||
private String addTimeStr;
|
||||
|
||||
private String add_time_begin;
|
||||
|
||||
private String add_time_end;
|
||||
}
|
||||
Reference in New Issue
Block a user