Compare commits
No commits in common. '7de4b04ccf4e8da6d844bfdb39ddb87dc72988bb' and '45786be492cf8958ffa756cb63273dbc3e33f4ce' have entirely different histories.
7de4b04ccf
...
45786be492
@ -1,30 +0,0 @@
|
|||||||
package cn.xluobo.business.sc.salary.repo.model;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import lombok.Getter;
|
|
||||||
import lombok.Setter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 销售和教室提成设置
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@TableName("sc_commission_info")
|
|
||||||
public class CommissionInfo {
|
|
||||||
|
|
||||||
@TableId(type = IdType.AUTO)
|
|
||||||
private Integer id;
|
|
||||||
|
|
||||||
private Integer tenantId;
|
|
||||||
|
|
||||||
private Long schoolId;
|
|
||||||
|
|
||||||
private String schoolName;
|
|
||||||
|
|
||||||
private Integer courseId;
|
|
||||||
|
|
||||||
private Integer courseName;
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in new issue