Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构
ZmrOrg.java4KB
/*
* 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
*
* https://zhiqim.org/project/zhiqim_components/zhiqim_account.htm
*
* Zhiqim Account is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package org.zhiqim.manager.dbo;
import java.io.Serializable;
import java.sql.Timestamp;
import org.zhiqim.kernel.annotation.AnAlias;
import org.zhiqim.kernel.annotation.AnNew;
import org.zhiqim.kernel.json.Jsons;
import org.zhiqim.orm.annotation.*;
/**
* 系统组织表 对应表《ZMR_ORG》
*/
@AnAlias("ZmrOrg")
@AnNew
@AnTable(table="ZMR_ORG", key="ORG_ID", type="InnoDB")
public class ZmrOrg implements Serializable
{
private static final long serialVersionUID = 1L;
@AnTableField(column="ORG_ID", type="long", notNull=true) private long orgId; //1.组织编号
@AnTableField(column="ORG_NAME", type="string,64", notNull=true) private String orgName; //2.组织名称
@AnTableField(column="ORG_LEVEL", type="int", notNull=true) private int orgLevel; //3.组织级别,目前0:根组织,1:商户
@AnTableField(column="ORG_STATUS", type="int", notNull=true) private int orgStatus; //4.组织状态,0:正常,1:停用
@AnTableField(column="ORG_SEQ", type="int", notNull=true) private int orgSeq; //5.组织排序号
@AnTableField(column="ORG_TYPES", type="string,200", notNull=false) private String orgTypes; //6.组织权限分组,多个逗号隔开
@AnTableField(column="ORG_BALANCE", type="long", notNull=true) private long orgBalance; //7.商户余额,分
@AnTableField(column="ORG_BALANCE_GIFT", type="long", notNull=true) private long orgBalanceGift; //8.商户赠送余额,分
@AnTableField(column="ORG_VIP", type="string,20", notNull=false) private String orgVip; //9.VIP等级
@AnTableField(column="ORG_PAYMENT", type="string,32", notNull=false) private String orgPayment; //10.用户默认支付方式
@AnTableField(column="ORG_CREATED", type="datetime", notNull=true) private Timestamp orgCreated; //11.商户注册时间
public String toString()
{
return Jsons.toString(this);
}
public long getOrgId()
{
return orgId;
}
public ZmrOrg setOrgId(long orgId)
{
this.orgId = orgId;
return this;
}
public String getOrgName()
{
return orgName;
}
public ZmrOrg setOrgName(String orgName)
{
this.orgName = orgName;
return this;
}
public int getOrgLevel()
{
return orgLevel;
}
public ZmrOrg setOrgLevel(int orgLevel)
{
this.orgLevel = orgLevel;
return this;
}
public int getOrgStatus()
{
return orgStatus;
}
public ZmrOrg setOrgStatus(int orgStatus)
{
this.orgStatus = orgStatus;
return this;
}
public int getOrgSeq()
{
return orgSeq;
}
public ZmrOrg setOrgSeq(int orgSeq)
{
this.orgSeq = orgSeq;
return this;
}
public String getOrgTypes()
{
return orgTypes;
}
public ZmrOrg setOrgTypes(String orgTypes)
{
this.orgTypes = orgTypes;
return this;
}
public long getOrgBalance()
{
return orgBalance;
}
public ZmrOrg setOrgBalance(long orgBalance)
{
this.orgBalance = orgBalance;
return this;
}
public long getOrgBalanceGift()
{
return orgBalanceGift;
}
public ZmrOrg setOrgBalanceGift(long orgBalanceGift)
{
this.orgBalanceGift = orgBalanceGift;
return this;
}
public String getOrgVip()
{
return orgVip;
}
public ZmrOrg setOrgVip(String orgVip)
{
this.orgVip = orgVip;
return this;
}
public String getOrgPayment()
{
return orgPayment;
}
public ZmrOrg setOrgPayment(String orgPayment)
{
this.orgPayment = orgPayment;
return this;
}
public Timestamp getOrgCreated()
{
return orgCreated;
}
public ZmrOrg setOrgCreated(Timestamp orgCreated)
{
this.orgCreated = orgCreated;
return this;
}
}