| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436 |
- package com.goafanti.admin.bo;
- import java.math.BigDecimal;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.goafanti.common.constant.AFTConstants;
- public class ProjectSizeBo {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private String id;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.create_id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private String createId;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.create_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private Date createTime;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.update_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private Date updateTime;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.pid
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private String pid;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.pname
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private String pname;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private BigDecimal price;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.offset
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private BigDecimal offset;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.activity_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private BigDecimal activityPrice;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.activity_flag
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private String activityFlag;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.member_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private BigDecimal memberPrice;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column project_size.status
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- private Integer status;
- /**
- * 项目名称
- */
- private String bname;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.id
- *
- * @return the value of project_size.id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public String getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.id
- *
- * @param id the value for project_size.id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setId(String id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.create_id
- *
- * @return the value of project_size.create_id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public String getCreateId() {
- return createId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.create_id
- *
- * @param createId the value for project_size.create_id
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setCreateId(String createId) {
- this.createId = createId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.create_time
- *
- * @return the value of project_size.create_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public Date getCreateTime() {
- return createTime;
- }
- public String getCreateTimeFormattedDate() {
- if (this.createTime == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getCreateTime(), AFTConstants.YYYYMMDDHHMMSS);
- }
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.create_time
- *
- * @param createTime the value for project_size.create_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.update_time
- *
- * @return the value of project_size.update_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public Date getUpdateTime() {
- return updateTime;
- }
- public String getUpdateTimeFormattedDate() {
- if (this.updateTime == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getCreateTime(), AFTConstants.YYYYMMDDHHMMSS);
- }
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.update_time
- *
- * @param updateTime the value for project_size.update_time
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.pid
- *
- * @return the value of project_size.pid
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public String getPid() {
- return pid;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.pid
- *
- * @param pid the value for project_size.pid
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setPid(String pid) {
- this.pid = pid;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.pname
- *
- * @return the value of project_size.pname
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public String getPname() {
- return pname;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.pname
- *
- * @param pname the value for project_size.pname
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setPname(String pname) {
- this.pname = pname;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.price
- *
- * @return the value of project_size.price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public BigDecimal getPrice() {
- return price;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.price
- *
- * @param price the value for project_size.price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setPrice(BigDecimal price) {
- this.price = price;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.offset
- *
- * @return the value of project_size.offset
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public BigDecimal getOffset() {
- return offset;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.offset
- *
- * @param offset the value for project_size.offset
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setOffset(BigDecimal offset) {
- this.offset = offset;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.activity_price
- *
- * @return the value of project_size.activity_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public BigDecimal getActivityPrice() {
- return activityPrice;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.activity_price
- *
- * @param activityPrice the value for project_size.activity_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setActivityPrice(BigDecimal activityPrice) {
- this.activityPrice = activityPrice;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.activity_flag
- *
- * @return the value of project_size.activity_flag
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public String getActivityFlag() {
- return activityFlag;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.activity_flag
- *
- * @param activityFlag the value for project_size.activity_flag
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setActivityFlag(String activityFlag) {
- this.activityFlag = activityFlag;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.member_price
- *
- * @return the value of project_size.member_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public BigDecimal getMemberPrice() {
- return memberPrice;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.member_price
- *
- * @param memberPrice the value for project_size.member_price
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setMemberPrice(BigDecimal memberPrice) {
- this.memberPrice = memberPrice;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column project_size.status
- *
- * @return the value of project_size.status
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public Integer getStatus() {
- return status;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column project_size.status
- *
- * @param status the value for project_size.status
- *
- * @mbg.generated Mon Dec 04 09:52:04 CST 2017
- */
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getBname() {
- return bname;
- }
- public void setBname(String bname) {
- this.bname = bname;
- }
- }
|