Compare commits
2 Commits
45786be492
...
7de4b04ccf
| Author | SHA1 | Date |
|---|---|---|
|
|
7de4b04ccf | 6 days ago |
|
|
b0a7a0d2bc | 6 days ago |
@ -0,0 +1,30 @@
|
|||||||
|
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