Commit 5142fba3 authored by neo's avatar neo

[dev] add gen admin entity

parent debf076d
......@@ -5,33 +5,33 @@ import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table Area
* This class corresponds to the database table AREA
*
* @mbg.generated do_not_delete_during_merge
*/
public class Area implements Serializable {
public class Area extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Area.ID
* This field corresponds to the database column AREA.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Area.ParentID
* This field corresponds to the database column AREA.PARENT_ID
*
* @mbg.generated
*/
private String parentID;
private String parentId;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Area.Name
* This field corresponds to the database column AREA.NAME
*
* @mbg.generated
*/
......@@ -40,7 +40,7 @@ public class Area implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Area.IsActive
* This field corresponds to the database column AREA.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -48,7 +48,7 @@ public class Area implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table Area
* This field corresponds to the database table AREA
*
* @mbg.generated
*/
......@@ -56,57 +56,57 @@ public class Area implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Area.ID
* This method returns the value of the database column AREA.ID
*
* @return the value of Area.ID
* @return the value of AREA.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Area.ID
* This method sets the value of the database column AREA.ID
*
* @param ID the value for Area.ID
* @param id the value for AREA.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID;
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Area.ParentID
* This method returns the value of the database column AREA.PARENT_ID
*
* @return the value of Area.ParentID
* @return the value of AREA.PARENT_ID
*
* @mbg.generated
*/
public String getParentID() {
return parentID;
public String getParentId() {
return parentId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Area.ParentID
* This method sets the value of the database column AREA.PARENT_ID
*
* @param parentID the value for Area.ParentID
* @param parentId the value for AREA.PARENT_ID
*
* @mbg.generated
*/
public void setParentID(String parentID) {
this.parentID = parentID == null ? null : parentID.trim();
public void setParentId(String parentId) {
this.parentId = parentId == null ? null : parentId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Area.Name
* This method returns the value of the database column AREA.NAME
*
* @return the value of Area.Name
* @return the value of AREA.NAME
*
* @mbg.generated
*/
......@@ -116,9 +116,9 @@ public class Area implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Area.Name
* This method sets the value of the database column AREA.NAME
*
* @param name the value for Area.Name
* @param name the value for AREA.NAME
*
* @mbg.generated
*/
......@@ -128,9 +128,9 @@ public class Area implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Area.IsActive
* This method returns the value of the database column AREA.IS_ACTIVE
*
* @return the value of Area.IsActive
* @return the value of AREA.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -140,9 +140,9 @@ public class Area implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Area.IsActive
* This method sets the value of the database column AREA.IS_ACTIVE
*
* @param isActive the value for Area.IsActive
* @param isActive the value for AREA.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -152,7 +152,7 @@ public class Area implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table Area
* This method corresponds to the database table AREA
*
* @mbg.generated
*/
......@@ -162,8 +162,8 @@ public class Area implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", parentID=").append(parentID);
sb.append(", id=").append(id);
sb.append(", parentId=").append(parentId);
sb.append(", name=").append(name);
sb.append(", isActive=").append(isActive);
sb.append("]");
......
......@@ -5,45 +5,41 @@ import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table AreaRegion
* This class corresponds to the database table AREA_REGION
*
* @mbg.generated do_not_delete_during_merge
*/
public class AreaRegion implements Serializable {
public class AreaRegion extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AreaRegion.ID
* This field corresponds to the database column AREA_REGION.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AreaRegion.AreaID
* This field corresponds to the database column AREA_REGION.AREA_ID
*
* @mbg.generated
*/
private String areaID;
private String areaId;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AreaRegion.RegionID
* This field corresponds to the database column AREA_REGION.REGION_ID
*
* @mbg.generated
*/
private String regionID;
private Area area;
private Region region;
private String regionId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table AreaRegion
* This field corresponds to the database table AREA_REGION
*
* @mbg.generated
*/
......@@ -51,107 +47,79 @@ public class AreaRegion implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AreaRegion.ID
* This method returns the value of the database column AREA_REGION.ID
*
* @return the value of AreaRegion.ID
* @return the value of AREA_REGION.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AreaRegion.ID
* This method sets the value of the database column AREA_REGION.ID
*
* @param ID the value for AreaRegion.ID
* @param id the value for AREA_REGION.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID;
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AreaRegion.AreaID
* This method returns the value of the database column AREA_REGION.AREA_ID
*
* @return the value of AreaRegion.AreaID
* @return the value of AREA_REGION.AREA_ID
*
* @mbg.generated
*/
public String getAreaID() {
return areaID;
public String getAreaId() {
return areaId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AreaRegion.AreaID
* This method sets the value of the database column AREA_REGION.AREA_ID
*
* @param areaID the value for AreaRegion.AreaID
* @param areaId the value for AREA_REGION.AREA_ID
*
* @mbg.generated
*/
public void setAreaID(String areaID) {
this.areaID = areaID == null ? null : areaID.trim();
public void setAreaId(String areaId) {
this.areaId = areaId == null ? null : areaId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AreaRegion.RegionID
* This method returns the value of the database column AREA_REGION.REGION_ID
*
* @return the value of AreaRegion.RegionID
* @return the value of AREA_REGION.REGION_ID
*
* @mbg.generated
*/
public String getRegionID() {
return regionID;
public String getRegionId() {
return regionId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AreaRegion.RegionID
* This method sets the value of the database column AREA_REGION.REGION_ID
*
* @param regionID the value for AreaRegion.RegionID
* @param regionId the value for AREA_REGION.REGION_ID
*
* @mbg.generated
*/
public void setRegionID(String regionID) {
this.regionID = regionID == null ? null : regionID.trim();
}
/**
* @return the area
*/
public Area getArea() {
return area;
}
/**
* @param area the area to set
*/
public void setArea(Area area) {
this.area = area;
}
/**
* @return the region
*/
public Region getRegion() {
return region;
}
/**
* @param region the region to set
*/
public void setRegion(Region region) {
this.region = region;
public void setRegionId(String regionId) {
this.regionId = regionId == null ? null : regionId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AreaRegion
* This method corresponds to the database table AREA_REGION
*
* @mbg.generated
*/
......@@ -161,9 +129,9 @@ public class AreaRegion implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", areaID=").append(areaID);
sb.append(", regionID=").append(regionID);
sb.append(", id=").append(id);
sb.append(", areaId=").append(areaId);
sb.append(", regionId=").append(regionId);
sb.append("]");
return sb.toString();
}
......
......@@ -6,15 +6,15 @@ import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table AssetGroup
* This class corresponds to the database table ASSET_GROUP
*
* @mbg.generated do_not_delete_during_merge
*/
public class AssetGroup implements Serializable {
public class AssetGroup extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AssetGroup.ID
* This field corresponds to the database column ASSET_GROUP.ID
*
* @mbg.generated
*/
......@@ -23,33 +23,33 @@ public class AssetGroup implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AssetGroup.AssetGroupName
* This field corresponds to the database column ASSET_GROUP.ASSET_GROUP_NAME
*
* @mbg.generated
*/
private String assetgroupname;
private String assetGroupName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AssetGroup.CreateTime
* This field corresponds to the database column ASSET_GROUP.CREATE_TIME
*
* @mbg.generated
*/
private Date createtime;
private Date createTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AssetGroup.UpdateTime
* This field corresponds to the database column ASSET_GROUP.UPDATE_TIME
*
* @mbg.generated
*/
private Date updatetime;
private Date updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table AssetGroup
* This field corresponds to the database table ASSET_GROUP
*
* @mbg.generated
*/
......@@ -57,9 +57,9 @@ public class AssetGroup implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AssetGroup.ID
* This method returns the value of the database column ASSET_GROUP.ID
*
* @return the value of AssetGroup.ID
* @return the value of ASSET_GROUP.ID
*
* @mbg.generated
*/
......@@ -69,9 +69,9 @@ public class AssetGroup implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AssetGroup.ID
* This method sets the value of the database column ASSET_GROUP.ID
*
* @param id the value for AssetGroup.ID
* @param id the value for ASSET_GROUP.ID
*
* @mbg.generated
*/
......@@ -81,79 +81,79 @@ public class AssetGroup implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AssetGroup.AssetGroupName
* This method returns the value of the database column ASSET_GROUP.ASSET_GROUP_NAME
*
* @return the value of AssetGroup.AssetGroupName
* @return the value of ASSET_GROUP.ASSET_GROUP_NAME
*
* @mbg.generated
*/
public String getAssetgroupname() {
return assetgroupname;
public String getAssetGroupName() {
return assetGroupName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AssetGroup.AssetGroupName
* This method sets the value of the database column ASSET_GROUP.ASSET_GROUP_NAME
*
* @param assetgroupname the value for AssetGroup.AssetGroupName
* @param assetGroupName the value for ASSET_GROUP.ASSET_GROUP_NAME
*
* @mbg.generated
*/
public void setAssetgroupname(String assetgroupname) {
this.assetgroupname = assetgroupname == null ? null : assetgroupname.trim();
public void setAssetGroupName(String assetGroupName) {
this.assetGroupName = assetGroupName == null ? null : assetGroupName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AssetGroup.CreateTime
* This method returns the value of the database column ASSET_GROUP.CREATE_TIME
*
* @return the value of AssetGroup.CreateTime
* @return the value of ASSET_GROUP.CREATE_TIME
*
* @mbg.generated
*/
public Date getCreatetime() {
return createtime;
public Date getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AssetGroup.CreateTime
* This method sets the value of the database column ASSET_GROUP.CREATE_TIME
*
* @param createtime the value for AssetGroup.CreateTime
* @param createTime the value for ASSET_GROUP.CREATE_TIME
*
* @mbg.generated
*/
public void setCreatetime(Date createtime) {
this.createtime = createtime;
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AssetGroup.UpdateTime
* This method returns the value of the database column ASSET_GROUP.UPDATE_TIME
*
* @return the value of AssetGroup.UpdateTime
* @return the value of ASSET_GROUP.UPDATE_TIME
*
* @mbg.generated
*/
public Date getUpdatetime() {
return updatetime;
public Date getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AssetGroup.UpdateTime
* This method sets the value of the database column ASSET_GROUP.UPDATE_TIME
*
* @param updatetime the value for AssetGroup.UpdateTime
* @param updateTime the value for ASSET_GROUP.UPDATE_TIME
*
* @mbg.generated
*/
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AssetGroup
* This method corresponds to the database table ASSET_GROUP
*
* @mbg.generated
*/
......@@ -164,9 +164,9 @@ public class AssetGroup implements Serializable {
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", assetgroupname=").append(assetgroupname);
sb.append(", createtime=").append(createtime);
sb.append(", updatetime=").append(updatetime);
sb.append(", assetGroupName=").append(assetGroupName);
sb.append(", createTime=").append(createTime);
sb.append(", updateTime=").append(updateTime);
sb.append("]");
return sb.toString();
}
......
......@@ -6,24 +6,24 @@ import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table BusinessUnit
* This class corresponds to the database table BUSINESS_UNIT
*
* @mbg.generated do_not_delete_during_merge
*/
public class BusinessUnit implements Serializable {
public class BusinessUnit extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column BusinessUnit.ID
* This field corresponds to the database column BUSINESS_UNIT.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column BusinessUnit.Name
* This field corresponds to the database column BUSINESS_UNIT.NAME
*
* @mbg.generated
*/
......@@ -32,7 +32,7 @@ public class BusinessUnit implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column BusinessUnit.IsActive
* This field corresponds to the database column BUSINESS_UNIT.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -41,7 +41,7 @@ public class BusinessUnit implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column BusinessUnit.CreateTime
* This field corresponds to the database column BUSINESS_UNIT.CREATE_TIME
*
* @mbg.generated
*/
......@@ -50,7 +50,7 @@ public class BusinessUnit implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column BusinessUnit.UpdateTime
* This field corresponds to the database column BUSINESS_UNIT.UPDATE_TIME
*
* @mbg.generated
*/
......@@ -58,7 +58,7 @@ public class BusinessUnit implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table BusinessUnit
* This field corresponds to the database table BUSINESS_UNIT
*
* @mbg.generated
*/
......@@ -66,33 +66,33 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column BusinessUnit.ID
* This method returns the value of the database column BUSINESS_UNIT.ID
*
* @return the value of BusinessUnit.ID
* @return the value of BUSINESS_UNIT.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column BusinessUnit.ID
* This method sets the value of the database column BUSINESS_UNIT.ID
*
* @param ID the value for BusinessUnit.ID
* @param id the value for BUSINESS_UNIT.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column BusinessUnit.Name
* This method returns the value of the database column BUSINESS_UNIT.NAME
*
* @return the value of BusinessUnit.Name
* @return the value of BUSINESS_UNIT.NAME
*
* @mbg.generated
*/
......@@ -102,9 +102,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column BusinessUnit.Name
* This method sets the value of the database column BUSINESS_UNIT.NAME
*
* @param name the value for BusinessUnit.Name
* @param name the value for BUSINESS_UNIT.NAME
*
* @mbg.generated
*/
......@@ -114,9 +114,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column BusinessUnit.IsActive
* This method returns the value of the database column BUSINESS_UNIT.IS_ACTIVE
*
* @return the value of BusinessUnit.IsActive
* @return the value of BUSINESS_UNIT.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -126,9 +126,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column BusinessUnit.IsActive
* This method sets the value of the database column BUSINESS_UNIT.IS_ACTIVE
*
* @param isActive the value for BusinessUnit.IsActive
* @param isActive the value for BUSINESS_UNIT.IS_ACTIVE
*
* @mbg.generated
*/
......@@ -138,9 +138,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column BusinessUnit.CreateTime
* This method returns the value of the database column BUSINESS_UNIT.CREATE_TIME
*
* @return the value of BusinessUnit.CreateTime
* @return the value of BUSINESS_UNIT.CREATE_TIME
*
* @mbg.generated
*/
......@@ -150,9 +150,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column BusinessUnit.CreateTime
* This method sets the value of the database column BUSINESS_UNIT.CREATE_TIME
*
* @param createTime the value for BusinessUnit.CreateTime
* @param createTime the value for BUSINESS_UNIT.CREATE_TIME
*
* @mbg.generated
*/
......@@ -162,9 +162,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column BusinessUnit.UpdateTime
* This method returns the value of the database column BUSINESS_UNIT.UPDATE_TIME
*
* @return the value of BusinessUnit.UpdateTime
* @return the value of BUSINESS_UNIT.UPDATE_TIME
*
* @mbg.generated
*/
......@@ -174,9 +174,9 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column BusinessUnit.UpdateTime
* This method sets the value of the database column BUSINESS_UNIT.UPDATE_TIME
*
* @param updateTime the value for BusinessUnit.UpdateTime
* @param updateTime the value for BUSINESS_UNIT.UPDATE_TIME
*
* @mbg.generated
*/
......@@ -186,7 +186,7 @@ public class BusinessUnit implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table BusinessUnit
* This method corresponds to the database table BUSINESS_UNIT
*
* @mbg.generated
*/
......@@ -196,7 +196,7 @@ public class BusinessUnit implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", id=").append(id);
sb.append(", name=").append(name);
sb.append(", isActive=").append(isActive);
sb.append(", createTime=").append(createTime);
......
......@@ -5,24 +5,24 @@ import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table Cache
* This class corresponds to the database table CACHE
*
* @mbg.generated do_not_delete_during_merge
*/
public class Cache implements Serializable {
public class Cache extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Cache.ID
* This field corresponds to the database column CACHE.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Cache.CacheKey
* This field corresponds to the database column CACHE.CACHE_KEY
*
* @mbg.generated
*/
......@@ -31,7 +31,7 @@ public class Cache implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Cache.LastModifyTime
* This field corresponds to the database column CACHE.LAST_MODIFY_TIME
*
* @mbg.generated
*/
......@@ -39,7 +39,7 @@ public class Cache implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table Cache
* This field corresponds to the database table CACHE
*
* @mbg.generated
*/
......@@ -47,33 +47,33 @@ public class Cache implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Cache.ID
* This method returns the value of the database column CACHE.ID
*
* @return the value of Cache.ID
* @return the value of CACHE.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Cache.ID
* This method sets the value of the database column CACHE.ID
*
* @param ID the value for Cache.ID
* @param id the value for CACHE.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Cache.CacheKey
* This method returns the value of the database column CACHE.CACHE_KEY
*
* @return the value of Cache.CacheKey
* @return the value of CACHE.CACHE_KEY
*
* @mbg.generated
*/
......@@ -83,9 +83,9 @@ public class Cache implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Cache.CacheKey
* This method sets the value of the database column CACHE.CACHE_KEY
*
* @param cacheKey the value for Cache.CacheKey
* @param cacheKey the value for CACHE.CACHE_KEY
*
* @mbg.generated
*/
......@@ -95,9 +95,9 @@ public class Cache implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Cache.LastModifyTime
* This method returns the value of the database column CACHE.LAST_MODIFY_TIME
*
* @return the value of Cache.LastModifyTime
* @return the value of CACHE.LAST_MODIFY_TIME
*
* @mbg.generated
*/
......@@ -107,9 +107,9 @@ public class Cache implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Cache.LastModifyTime
* This method sets the value of the database column CACHE.LAST_MODIFY_TIME
*
* @param lastModifyTime the value for Cache.LastModifyTime
* @param lastModifyTime the value for CACHE.LAST_MODIFY_TIME
*
* @mbg.generated
*/
......@@ -119,7 +119,7 @@ public class Cache implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table Cache
* This method corresponds to the database table CACHE
*
* @mbg.generated
*/
......@@ -129,7 +129,7 @@ public class Cache implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", id=").append(id);
sb.append(", cacheKey=").append(cacheKey);
sb.append(", lastModifyTime=").append(lastModifyTime);
sb.append("]");
......
package pwc.taxtech.atms.entity;
import java.io.Serializable;
import java.math.BigDecimal;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table Customer
* This class corresponds to the database table CUSTOMER
*
* @mbg.generated do_not_delete_during_merge
*/
public class Customer implements Serializable {
public class Customer extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Customer.ID
* This field corresponds to the database column CUSTOMER.ID
*
* @mbg.generated
*/
private String ID;
private BigDecimal id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Customer.Code
* This field corresponds to the database column CUSTOMER.FIRST_NAME
*
* @mbg.generated
*/
private String code;
private String firstName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Customer.Name
* This field corresponds to the database column CUSTOMER.LAST_NAME
*
* @mbg.generated
*/
private String name;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column Customer.EnterPriseAccountID
*
* @mbg.generated
*/
private String enterPriseAccountID;
private String lastName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table Customer
* This field corresponds to the database table CUSTOMER
*
* @mbg.generated
*/
......@@ -56,103 +48,79 @@ public class Customer implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Customer.ID
*
* @return the value of Customer.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Customer.ID
*
* @param ID the value for Customer.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Customer.Code
* This method returns the value of the database column CUSTOMER.ID
*
* @return the value of Customer.Code
* @return the value of CUSTOMER.ID
*
* @mbg.generated
*/
public String getCode() {
return code;
public BigDecimal getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Customer.Code
* This method sets the value of the database column CUSTOMER.ID
*
* @param code the value for Customer.Code
* @param id the value for CUSTOMER.ID
*
* @mbg.generated
*/
public void setCode(String code) {
this.code = code == null ? null : code.trim();
public void setId(BigDecimal id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Customer.Name
* This method returns the value of the database column CUSTOMER.FIRST_NAME
*
* @return the value of Customer.Name
* @return the value of CUSTOMER.FIRST_NAME
*
* @mbg.generated
*/
public String getName() {
return name;
public String getFirstName() {
return firstName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Customer.Name
* This method sets the value of the database column CUSTOMER.FIRST_NAME
*
* @param name the value for Customer.Name
* @param firstName the value for CUSTOMER.FIRST_NAME
*
* @mbg.generated
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
public void setFirstName(String firstName) {
this.firstName = firstName == null ? null : firstName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column Customer.EnterPriseAccountID
* This method returns the value of the database column CUSTOMER.LAST_NAME
*
* @return the value of Customer.EnterPriseAccountID
* @return the value of CUSTOMER.LAST_NAME
*
* @mbg.generated
*/
public String getEnterPriseAccountID() {
return enterPriseAccountID;
public String getLastName() {
return lastName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column Customer.EnterPriseAccountID
* This method sets the value of the database column CUSTOMER.LAST_NAME
*
* @param enterPriseAccountID the value for Customer.EnterPriseAccountID
* @param lastName the value for CUSTOMER.LAST_NAME
*
* @mbg.generated
*/
public void setEnterPriseAccountID(String enterPriseAccountID) {
this.enterPriseAccountID = enterPriseAccountID == null ? null : enterPriseAccountID.trim();
public void setLastName(String lastName) {
this.lastName = lastName == null ? null : lastName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table Customer
* This method corresponds to the database table CUSTOMER
*
* @mbg.generated
*/
......@@ -162,10 +130,9 @@ public class Customer implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", code=").append(code);
sb.append(", name=").append(name);
sb.append(", enterPriseAccountID=").append(enterPriseAccountID);
sb.append(", id=").append(id);
sb.append(", firstName=").append(firstName);
sb.append(", lastName=").append(lastName);
sb.append("]");
return sb.toString();
}
......
......@@ -5,41 +5,41 @@ import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table DimensionValueOrg
* This class corresponds to the database table DIMENSION_VALUE_ORG
*
* @mbg.generated do_not_delete_during_merge
*/
public class DimensionValueOrg implements Serializable {
public class DimensionValueOrg extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column DimensionValueOrg.ID
* This field corresponds to the database column DIMENSION_VALUE_ORG.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column DimensionValueOrg.DimensionValueID
* This field corresponds to the database column DIMENSION_VALUE_ORG.DIMENSION_VALUE_ID
*
* @mbg.generated
*/
private String dimensionValueID;
private String dimensionValueId;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column DimensionValueOrg.OrganizationID
* This field corresponds to the database column DIMENSION_VALUE_ORG.ORGANIZATION_ID
*
* @mbg.generated
*/
private String organizationID;
private String organizationId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table DimensionValueOrg
* This field corresponds to the database table DIMENSION_VALUE_ORG
*
* @mbg.generated
*/
......@@ -47,79 +47,79 @@ public class DimensionValueOrg implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column DimensionValueOrg.ID
* This method returns the value of the database column DIMENSION_VALUE_ORG.ID
*
* @return the value of DimensionValueOrg.ID
* @return the value of DIMENSION_VALUE_ORG.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column DimensionValueOrg.ID
* This method sets the value of the database column DIMENSION_VALUE_ORG.ID
*
* @param ID the value for DimensionValueOrg.ID
* @param id the value for DIMENSION_VALUE_ORG.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column DimensionValueOrg.DimensionValueID
* This method returns the value of the database column DIMENSION_VALUE_ORG.DIMENSION_VALUE_ID
*
* @return the value of DimensionValueOrg.DimensionValueID
* @return the value of DIMENSION_VALUE_ORG.DIMENSION_VALUE_ID
*
* @mbg.generated
*/
public String getDimensionValueID() {
return dimensionValueID;
public String getDimensionValueId() {
return dimensionValueId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column DimensionValueOrg.DimensionValueID
* This method sets the value of the database column DIMENSION_VALUE_ORG.DIMENSION_VALUE_ID
*
* @param dimensionValueID the value for DimensionValueOrg.DimensionValueID
* @param dimensionValueId the value for DIMENSION_VALUE_ORG.DIMENSION_VALUE_ID
*
* @mbg.generated
*/
public void setDimensionValueID(String dimensionValueID) {
this.dimensionValueID = dimensionValueID == null ? null : dimensionValueID.trim();
public void setDimensionValueId(String dimensionValueId) {
this.dimensionValueId = dimensionValueId == null ? null : dimensionValueId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column DimensionValueOrg.OrganizationID
* This method returns the value of the database column DIMENSION_VALUE_ORG.ORGANIZATION_ID
*
* @return the value of DimensionValueOrg.OrganizationID
* @return the value of DIMENSION_VALUE_ORG.ORGANIZATION_ID
*
* @mbg.generated
*/
public String getOrganizationID() {
return organizationID;
public String getOrganizationId() {
return organizationId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column DimensionValueOrg.OrganizationID
* This method sets the value of the database column DIMENSION_VALUE_ORG.ORGANIZATION_ID
*
* @param organizationID the value for DimensionValueOrg.OrganizationID
* @param organizationId the value for DIMENSION_VALUE_ORG.ORGANIZATION_ID
*
* @mbg.generated
*/
public void setOrganizationID(String organizationID) {
this.organizationID = organizationID == null ? null : organizationID.trim();
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId == null ? null : organizationId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table DimensionValueOrg
* This method corresponds to the database table DIMENSION_VALUE_ORG
*
* @mbg.generated
*/
......@@ -129,9 +129,9 @@ public class DimensionValueOrg implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", dimensionValueID=").append(dimensionValueID);
sb.append(", organizationID=").append(organizationID);
sb.append(", id=").append(id);
sb.append(", dimensionValueId=").append(dimensionValueId);
sb.append(", organizationId=").append(organizationId);
sb.append("]");
return sb.toString();
}
......
......@@ -5,24 +5,24 @@ import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table FormulaParamConfig
* This class corresponds to the database table FORMULA_PARAM_CONFIG
*
* @mbg.generated do_not_delete_during_merge
*/
public class FormulaParamConfig implements Serializable {
public class FormulaParamConfig extends BaseEntity implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FormulaParamConfig.ID
* This field corresponds to the database column FORMULA_PARAM_CONFIG.ID
*
* @mbg.generated
*/
private String ID;
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FormulaParamConfig.Name
* This field corresponds to the database column FORMULA_PARAM_CONFIG.NAME
*
* @mbg.generated
*/
......@@ -31,7 +31,7 @@ public class FormulaParamConfig implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FormulaParamConfig.DisplayFormat
* This field corresponds to the database column FORMULA_PARAM_CONFIG.DISPLAY_FORMAT
*
* @mbg.generated
*/
......@@ -40,7 +40,7 @@ public class FormulaParamConfig implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FormulaParamConfig.ParamType
* This field corresponds to the database column FORMULA_PARAM_CONFIG.PARAM_TYPE
*
* @mbg.generated
*/
......@@ -49,7 +49,7 @@ public class FormulaParamConfig implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column FormulaParamConfig.ParamDataType
* This field corresponds to the database column FORMULA_PARAM_CONFIG.PARAM_DATA_TYPE
*
* @mbg.generated
*/
......@@ -57,7 +57,7 @@ public class FormulaParamConfig implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table FormulaParamConfig
* This field corresponds to the database table FORMULA_PARAM_CONFIG
*
* @mbg.generated
*/
......@@ -65,33 +65,33 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FormulaParamConfig.ID
* This method returns the value of the database column FORMULA_PARAM_CONFIG.ID
*
* @return the value of FormulaParamConfig.ID
* @return the value of FORMULA_PARAM_CONFIG.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FormulaParamConfig.ID
* This method sets the value of the database column FORMULA_PARAM_CONFIG.ID
*
* @param ID the value for FormulaParamConfig.ID
* @param id the value for FORMULA_PARAM_CONFIG.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FormulaParamConfig.Name
* This method returns the value of the database column FORMULA_PARAM_CONFIG.NAME
*
* @return the value of FormulaParamConfig.Name
* @return the value of FORMULA_PARAM_CONFIG.NAME
*
* @mbg.generated
*/
......@@ -101,9 +101,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FormulaParamConfig.Name
* This method sets the value of the database column FORMULA_PARAM_CONFIG.NAME
*
* @param name the value for FormulaParamConfig.Name
* @param name the value for FORMULA_PARAM_CONFIG.NAME
*
* @mbg.generated
*/
......@@ -113,9 +113,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FormulaParamConfig.DisplayFormat
* This method returns the value of the database column FORMULA_PARAM_CONFIG.DISPLAY_FORMAT
*
* @return the value of FormulaParamConfig.DisplayFormat
* @return the value of FORMULA_PARAM_CONFIG.DISPLAY_FORMAT
*
* @mbg.generated
*/
......@@ -125,9 +125,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FormulaParamConfig.DisplayFormat
* This method sets the value of the database column FORMULA_PARAM_CONFIG.DISPLAY_FORMAT
*
* @param displayFormat the value for FormulaParamConfig.DisplayFormat
* @param displayFormat the value for FORMULA_PARAM_CONFIG.DISPLAY_FORMAT
*
* @mbg.generated
*/
......@@ -137,9 +137,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FormulaParamConfig.ParamType
* This method returns the value of the database column FORMULA_PARAM_CONFIG.PARAM_TYPE
*
* @return the value of FormulaParamConfig.ParamType
* @return the value of FORMULA_PARAM_CONFIG.PARAM_TYPE
*
* @mbg.generated
*/
......@@ -149,9 +149,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FormulaParamConfig.ParamType
* This method sets the value of the database column FORMULA_PARAM_CONFIG.PARAM_TYPE
*
* @param paramType the value for FormulaParamConfig.ParamType
* @param paramType the value for FORMULA_PARAM_CONFIG.PARAM_TYPE
*
* @mbg.generated
*/
......@@ -161,9 +161,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column FormulaParamConfig.ParamDataType
* This method returns the value of the database column FORMULA_PARAM_CONFIG.PARAM_DATA_TYPE
*
* @return the value of FormulaParamConfig.ParamDataType
* @return the value of FORMULA_PARAM_CONFIG.PARAM_DATA_TYPE
*
* @mbg.generated
*/
......@@ -173,9 +173,9 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column FormulaParamConfig.ParamDataType
* This method sets the value of the database column FORMULA_PARAM_CONFIG.PARAM_DATA_TYPE
*
* @param paramDataType the value for FormulaParamConfig.ParamDataType
* @param paramDataType the value for FORMULA_PARAM_CONFIG.PARAM_DATA_TYPE
*
* @mbg.generated
*/
......@@ -185,7 +185,7 @@ public class FormulaParamConfig implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table FormulaParamConfig
* This method corresponds to the database table FORMULA_PARAM_CONFIG
*
* @mbg.generated
*/
......@@ -195,7 +195,7 @@ public class FormulaParamConfig implements Serializable {
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", id=").append(id);
sb.append(", name=").append(name);
sb.append(", displayFormat=").append(displayFormat);
sb.append(", paramType=").append(paramType);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment