初始化提交
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
package business.cooperop.base.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class Application {
|
||||
|
||||
@TableId
|
||||
private String code;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer type;
|
||||
|
||||
private Date deployedTime;
|
||||
|
||||
private Integer orderNo;
|
||||
|
||||
private String description;
|
||||
}
|
||||
Reference in New Issue
Block a user