/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 上链数量信息获取->获取的数据 */ public class D_X0018_ROWS_RECODE extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; long total;//可用总数量 /** *可用总数量 */ public void setTotal(long total) { this.total=total; } /** *可用总数量 */ public long getTotal() { return this.total; } long used;//已用数量 /** *已用数量 */ public void setUsed(long used) { this.used=used; } /** *已用数量 */ public long getUsed() { return this.used; } String name;//企业名字 /** *企业名字 */ public void setName(String name) { this.name=name; } /** *企业名字 */ public String getName() { return this.name; } String platformid;//平台id /** *平台id */ public void setPlatformid(String platformid) { this.platformid=platformid; } /** *平台id */ public String getPlatformid() { return this.platformid; } String account;//关联账户 /** *关联账户 */ public void setAccount(String account) { this.account=account; } /** *关联账户 */ public String getAccount() { return this.account; } String id;//唯一id /** *唯一id */ public void setId(String id) { this.id=id; } /** *唯一id */ public String getId() { return this.id; } }