12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 区块链服务
- */
- package com.miniframe.generate.comm.blockservice;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 平台可用上链数量设置
- */
- public class A_XB0053 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String platformId;//平台ID
- /**
- *平台ID
- */
- public void setPlatformId(String platformId) {
- this.platformId=platformId;
- }
- /**
- *平台ID
- */
- public String getPlatformId() {
- return this.platformId;
- }
- long totalCnt;//总数量
- /**
- *总数量
- */
- public void setTotalCnt(long totalCnt) {
- this.totalCnt=totalCnt;
- }
- /**
- *总数量
- */
- public long getTotalCnt() {
- return this.totalCnt;
- }
- String setTime;//设置时间
- /**
- *设置时间
- */
- public void setSetTime(String setTime) {
- this.setTime=setTime;
- }
- /**
- *设置时间
- */
- public String getSetTime() {
- return this.setTime;
- }
- String verify;//校验值
- /**
- *校验值
- */
- public void setVerify(String verify) {
- this.verify=verify;
- }
- /**
- *校验值
- */
- public String getVerify() {
- return this.verify;
- }
- }
|