parent
00d44dda64
commit
b0a7a0d2bc
@ -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