14 lines
185 B
Java
14 lines
185 B
Java
|
|
package com.whdc.model.entity;
|
||
|
|
|
||
|
|
public class Fc {
|
||
|
|
private Integer id;
|
||
|
|
|
||
|
|
private Integer userId;
|
||
|
|
|
||
|
|
private Integer abId;
|
||
|
|
|
||
|
|
private Integer sort;
|
||
|
|
|
||
|
|
private String type;
|
||
|
|
|
||
|
|
}
|