| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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;
- /**
- * 抽成比例修改表(SysPartnerTime)实体类
- *
- * @author makejava
- * @since 2024-10-10 09:07:51
- */
- @Data
- public class SysPartnerTime implements Serializable {
- private static final long serialVersionUID = 104835295201241641L;
- /**
- * 自增id
- */
- @TableId(value = "id", type= IdType.AUTO)
- private Integer id;
- /**
- * 用户id
- */
- private String userId;
- /**
- * 用户name
- */
- private String userName;
- /**
- * 旧比例
- */
- private String oldProportional;
- /**
- * 新比例
- */
- private String newProportional;
- /**
- * 月份
- */
- private String createTime;
- /**
- * 类型1合伙人 2工作室管理员
- */
- private Integer type;
- }
|