| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package com.ydtech.modules.admin.model;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * (SysPortionalConfiguration)实体类
- *
- * @author makejava
- * @since 2024-10-21 10:02:25
- */
- @Data
- public class SysProportionConfig implements Serializable {
- private static final long serialVersionUID = -52994380963075044L;
- /**
- * 自增id
- */
- @TableId(value = "id", type= IdType.AUTO)
- private Long id;
- /**
- * 一级合伙人
- */
- private String userId;
- /**
- * 总比例
- */
- private String proportion;
- /**
- * 一级比例
- */
- private String oneProportion;
- /**
- * 二级比例
- */
- private String twoProportion;
- /**
- * 三级比例
- */
- private String threeProportion;
- /**
- * 四级比例
- */
- private String fourProportion;
- /**
- * 五级比例
- */
- private String fiveProportion;
- }
|